Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why there is "from" attribute of <smtp> element in <system.net><mailSettings>? How can i use it?

Why there is "from" attribute of <smtp> element in <system.net><mailSettings>? How can i use it? As far as i see, i anyway have to specify From parameter for MailMessage class constructor. Can i use "from" attribute of <smtp> element for this in any natural way?

like image 216
Konstantin Avatar asked Feb 26 '23 10:02

Konstantin


1 Answers

There is an overload of the MailMessage constructor that doesn't require any parameters. This will set the From property to the value in your .config file. See here for more information, particularly the "Remarks" section:

http://msdn.microsoft.com/en-us/library/ms144707.aspx

"From is set to the value in the network element for mailSettings Element (Network Settings), if it exists."

like image 104
Tim Jones Avatar answered Apr 06 '23 13:04

Tim Jones