I don't know any validation of the From address on the recepient 
email server but i can give you an alternative way of sending mail 
since CDONTS method no longer is reliable.

Here is a sample:
'Instead of CDONTS

Dim objMessage, objConfig
Set objMessage = Server.CreateObject("CDO.Message")
Set objConfig = Server.CreateObject("CDO.Configuration")
        
With objConfig.Fields
 .Item("http://schemas.microsoft.com/cdo/configuration/sendusing";) = 1
 .Update
End With
        
With objMessage
 .Configuration = objConfig
 .To = "<emailaddress>"
 .From = "<youremailadrress>"
 .Subject = "Subject: " & strSubject
 .HTMLBody = "Content: " & strContent & "<br>" & "<br>" &_
             "Replies: " & strReplies & "<br>" & "<br>" &_
             "Go to https://yahoo.com";
 .Send
End With

Hope this help...

--- In [EMAIL PROTECTED], "mhrone00" 
<[EMAIL PROTECTED]> wrote:
> 
> 
> Hi There
> 
> I am using CDONTS to send emails from an asp page - usually this 
> works perfectly. However some emails are not getting to the 
recipient 
> when I know the address is correct
> 
> Does anyone know if there is any validation of the From address on 
> the recipient email server (possibly to prevent spam)? For example 
if 
> I send from [EMAIL PROTECTED], could this be blocked as the message 
does 
> not actually come from a hotmail server?
> 
> Any other ideas on this?
> 
> Thanks





------------------------ Yahoo! Groups Sponsor --------------------~--> 
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/saFolB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to