Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
mail sender
SUBMITTED BY:
Guest
DATE:
Nov. 21, 2013, 12:06 a.m.
FORMAT:
Text only
SIZE:
508 Bytes
Raw
Download
Tweet
HITS:
745
Go to comments
Report
MailMessage mlmsg = new MailMessage();
mlmsg.From = new MailAddress(this.txtFrom.Text);
mlmsg.To.Add(this.txtTo.Text);
mlmsg.Subject = txtSubject.Text;
mlmsg.Body = this.richTextMSG.Text;
SmtpClient Sclt = new SmtpClient(comboBox1.Text, 587);
Sclt.Credentials = new NetworkCredential(txtFrom.Text, txtMdp.Text);
Sclt.EnableSsl = true;
Sclt.Send(mlmsg);
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus