a smtp relay problem

tedwang

Perch
Hi ~ :(

I put my web on 64.156.222.124 (domain www.coolog.net)
And I can't send mail with smtp relay ~
the below is my asp code..........

Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.FromName = "xxxx"
Mailer.CustomCharSet = "big5"
Mailer.FromAddress= "[email protected]"
Mailer.RemoteHost = "mail.coolog.net"
Mailer.AddRecipient CustName,Email
Mailer.Subject = "xxxxxxx"
Mailer.BodyText = Body
Mailer.ContentType = "text/html"
Mailer.sendMail
Set Mailer = Nothing

Please help me kindly... ticket id : 48000

Ted
 
You can try by using "localhost" instead of mail.coolog.net as mailserver.
Support has also answered your ticket.
 
Back
Top