N
Nathan Sokalski
I have an ASP.NET page that sends a Mail.MailMessage to several email
addresses (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 = "(e-mail address removed);"
Mail.SmtpMail.Send(mailmsg)
mailmsg.To = "(e-mail address removed);"
Mail.SmtpMail.Send(mailmsg)
mailmsg.To = "(e-mail address removed);"
Mail.SmtpMail.Send(mailmsg)
When this code is run (the mailmsg object is created beforehand) it is
successfully sent to (e-mail address removed) and (e-mail address removed)
but is not sent to the verizon address. I do not recieve any errors of any
kind that I have noticed.
addresses (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 = "(e-mail address removed);"
Mail.SmtpMail.Send(mailmsg)
mailmsg.To = "(e-mail address removed);"
Mail.SmtpMail.Send(mailmsg)
mailmsg.To = "(e-mail address removed);"
Mail.SmtpMail.Send(mailmsg)
When this code is run (the mailmsg object is created beforehand) it is
successfully sent to (e-mail address removed) and (e-mail address removed)
but is not sent to the verizon address. I do not recieve any errors of any
kind that I have noticed.