T
Tom
Using Visual Web Developer 05 Express and this code:
using System.Web.Mail;
MailMessage mail = new MailMessage();
mail.BodyFormat = MailFormat.Html;
mail.To = txtEmailAddress.Text;
mail.From = "tgaughan@nuNO__SPAMmail.org";
mail.Subject = "Test";
string strBody = @"Test Body";
mail.Body = strBody;
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(mail);
The server rejected one or more recipient addresses. The server response
was: 550 5.7.1 Unable to relay for tgaughan@nuNO__SPAMmail.org
Thanks in advance...
using System.Web.Mail;
MailMessage mail = new MailMessage();
mail.BodyFormat = MailFormat.Html;
mail.To = txtEmailAddress.Text;
mail.From = "tgaughan@nuNO__SPAMmail.org";
mail.Subject = "Test";
string strBody = @"Test Body";
mail.Body = strBody;
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(mail);
The server rejected one or more recipient addresses. The server response
was: 550 5.7.1 Unable to relay for tgaughan@nuNO__SPAMmail.org
Thanks in advance...