MailMessage Question/Confusion
Posted
by j-t-s
on Stack Overflow
See other posts from Stack Overflow
or by j-t-s
Published on 2010-05-09T08:05:47Z
Indexed on
2010/05/09
8:08 UTC
Read the original article
Hit count: 211
Using this:
MailMessage mm = new MailMessage();
What is the difference between:
mm.Sender = sender;
and mm.From = from;
?
Thank you
© Stack Overflow or respective owner