Hi
I use code asp for send email.
my problems is:
If I want send a mail to hotmail Box.
It canot.
but it can send a mail to such as
[email protected] address.
but if I wnat send a mail to hotmail Such as "
[email protected]"
It reture this error
"550 not local host hotmail.com, not a gateway"
this is my code
Set Mail = Server.CreateObject("Persits.MailSender")
Set arrTo = Session("arrTo")
Mail.Host = "mail.iranpicmicro.com"
Mail.AddAddress
[email protected] ''''''"
[email protected]"'
Mail.From = "
[email protected]"
Mail.FromName = "Master Mailer"
Mail.Subject = "This is your Subject"
mail.Body = "This is an automatit mail"
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "An error occurred: " & Err.Description & a(11)
else
%><p><IMG src="images/Thanks.gif" align=right border=0></p><%
End If
pleae help me
Thanks