Forum Moderators: open

Message Too Old, No Replies

553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)

         

altincit

1:29 pm on Jul 20, 2005 (gmt 0)

10+ Year Member



I'm using my computer as a server(xp).this is an asp page with aspemail ,l am having this error message.
How can i deal with this error.
''set obj
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "10.50.10.123"
Mail.AddAddress "me@example.com"
Mail.Subject = "testing"
Mail.IsHTML = True
Mail.Body = msg_txt

On Error Resume Next
Mail.Send
If Err <> 0 Then ....

[edited by: jatar_k at 4:53 pm (utc) on July 23, 2005]
[edit reason] examplified email [/edit]

emsaw

1:17 am on Aug 17, 2005 (gmt 0)

10+ Year Member



altincit,

More and more hosts are requiring SMTP authentication in order to send email. This could be the cause of your mail getting rejected.

-Set SMTP authentication(use same username and pw as your mail account) in your mail client
or
-Hit send/receive before sending your email. Some hosts will allow you to send email only within a certain timeframe after authenticating.

If these things don't get you any farther, you'll need to contact your host to see what's up.

-Mark