Guest User

Untitled

a guest
Aug 19th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Email Attachment Size Limit
  2. MailMessage mail = new MailMessage();
  3. SmtpClient SmtpServer = new SmtpClient("smtp.live.com");
  4. mail.From = new MailAddress("email@hotmail.co.uk");
  5. mail.To.Add("receiving@hotmail.co.uk");
  6. mail.Subject = "Emailed from C#";
  7. mail.Body = "Emailed with attachment";
  8. Attachment attachment;
  9. attachment = new Attachment(@"C:file.txt");
  10. mail.Attachments.Add(attachment);
  11. SmtpServer.Port = 587;
  12. SmtpServer.Credentials = new NetworkCredential("email@hotmail.co.uk", "password");
  13. SmtpServer.EnableSsl = true;
  14. SmtpServer.Send(mail);
Add Comment
Please, Sign In to add comment