System.Net.Mail.MailMessage.MailMessage C# (CSharp) Method

MailMessage() public method

public MailMessage ( string from, string to, string subject, string body ) : System
from string
to string
subject string
body string
return System
        public MailMessage(string from, string to, string subject, string body) : this(from, to)
        {
            Subject = subject;
            Body = body;
        }

Same methods

MailMessage::MailMessage ( ) : System
MailMessage::MailMessage ( System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to ) : System
MailMessage::MailMessage ( string from, string to ) : System