B
Bob
I have a bit of code in a functions that sends a .Net mail message
asynchronously.
emailClient.SendAsync(EmailMessage, 0)
I don't really want to wait for the return status of the messages, so this
normally tests out fine BUT
When testing it I use my localhost as the smtp server. I can send an e-mail
to my normal e-mail address and I get it with my outlook but it won't send
an e-mail to my hotmail address. I won't see it thru my outlook hotmail
connection, nor will I see it in my internet browser whenn I connect to my
hotmail account.
Yet when I test my Outlook program, I can send an e-mail to my hotmail
e-mail address and I will see it in my Outlook hotmail account or in my
Internet browser page for my hotmail.
Why does this not work with the .Net emailclient.send(Emailmessage) nor
with emailClient.SendAsync(EmailMessage, 0), it looks like trying to send
via my localhost smtp server is being blocked by hotmail servers.
Any help would be appreciated.
Bob
asynchronously.
emailClient.SendAsync(EmailMessage, 0)
I don't really want to wait for the return status of the messages, so this
normally tests out fine BUT
When testing it I use my localhost as the smtp server. I can send an e-mail
to my normal e-mail address and I get it with my outlook but it won't send
an e-mail to my hotmail address. I won't see it thru my outlook hotmail
connection, nor will I see it in my internet browser whenn I connect to my
hotmail account.
Yet when I test my Outlook program, I can send an e-mail to my hotmail
e-mail address and I will see it in my Outlook hotmail account or in my
Internet browser page for my hotmail.
Why does this not work with the .Net emailclient.send(Emailmessage) nor
with emailClient.SendAsync(EmailMessage, 0), it looks like trying to send
via my localhost smtp server is being blocked by hotmail servers.
Any help would be appreciated.
Bob