|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Mail.SmtpMail.Send won't send to one of my addressesaddresses (all mine). However, one of the addresses, the one ending in @verizon.net, does not seem to be recieving the message even though the other addresses are. I know the spelling is correct because I have tried sending messages from my other accounts to this address and have recieved them successfully. I also do not know of any junkmail filter that would delete the emails sent using ASP.NET (I have also looked in the junkmail box for this address, and it is empty). The code used to send the emails is as follows: mailmsg.To = "myaddre***@mydomain1.com;" Mail.SmtpMail.Send(mailmsg) mailmsg.To = "myverizonaddr***@verizon.net;" Mail.SmtpMail.Send(mailmsg) mailmsg.To = "myaddre***@mydomain2.com;" Mail.SmtpMail.Send(mailmsg) When this code is run (the mailmsg object is created beforehand) it is successfully sent to myaddre***@mydomain1.com and myaddre***@mydomain2.com but is not sent to the verizon address. I do not recieve any errors of any kind that I have noticed. |
|||||||||||||||||||||||