C
Coder
If outgoing server requires authentication,
How can I use smtpmail object in c# ?
I use a windows 2003 server hosting packet somewhere...
string from = "(e-mail address removed)";
string to = UserEMail;
string subject = "Subject";
string body = "Test";
SmtpMail.SmtpServer = "smtp.xxx.com";
SmtpMail.Send(from, to, subject, body);
How can I use smtpmail object in c# ?
I use a windows 2003 server hosting packet somewhere...
string from = "(e-mail address removed)";
string to = UserEMail;
string subject = "Subject";
string body = "Test";
SmtpMail.SmtpServer = "smtp.xxx.com";
SmtpMail.Send(from, to, subject, body);