everyone!
I’m trying to send mail in ASP.NET web-site. I have smtp configuration section in web.config file. How can I configure it to send mail from everyone to everyone?
everyone! I’m trying to send mail in ASP.NET web-site. I have smtp configuration section
Share
You don’t need to have anything in web.config as que SMTP server can be specified in the SmtpClient constructor.
Then, if you need authentication, you can specify a NetworkCredential and the message in a MailMessage object.
Example: