S
Shaan
Hi Everybody,
I am incorporating emailing feature in my VB.Net
application. The code is as below. When I send email to
some (e-mail address removed), it sends the email successfully,
but when I send it to (e-mail address removed), it gives the
error message "Err: 553, Domain isn't in my list of
allowed rcpthost" . Can you pls throw some light on
this.. and give me solution..thanx in advance.
Dim Message As System.Web.Mail.MailMessage = New
System.Web.Mail.MailMessage()
Message.To = "(e-mail address removed)"
Message.From = "(e-mail address removed)"
Message.Body = "Test message text"
Message.Subject = "A Test"
Try
'SmtpMail.SmtpServer = ""
SmtpMail.Send(Message)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Its a standalone application, i m not running any server.
Your help will be appreciated.
Best,
Shaan.
I am incorporating emailing feature in my VB.Net
application. The code is as below. When I send email to
some (e-mail address removed), it sends the email successfully,
but when I send it to (e-mail address removed), it gives the
error message "Err: 553, Domain isn't in my list of
allowed rcpthost" . Can you pls throw some light on
this.. and give me solution..thanx in advance.
Dim Message As System.Web.Mail.MailMessage = New
System.Web.Mail.MailMessage()
Message.To = "(e-mail address removed)"
Message.From = "(e-mail address removed)"
Message.Body = "Test message text"
Message.Subject = "A Test"
Try
'SmtpMail.SmtpServer = ""
SmtpMail.Send(Message)
Catch ex As Exception
MsgBox(ex.Message)
End Try
Its a standalone application, i m not running any server.
Your help will be appreciated.
Best,
Shaan.