0

When im open my console app project it says:

enter image description here

Here is my codes:

MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
mail.From = new MailAddress("your mail@gmail.com");
mail.To.Add("to_mail@gmail.com");
mail.Subject = "Test Mail - 1";
mail.Body = "mail with attachment";

System.Net.Mail.Attachment attachment;
attachment = new System.Net.Mail.Attachment("c:\text.txt");
mail.Attachments.Add(attachment);

SmtpServer.Port = 587;
SmtpServer.Credentials = new System.Net.NetworkCredential("save111sender@gmail.com", "test123test.");
SmtpServer.EnableSsl = true;

SmtpServer.Send(mail);

Please help me for this problem.

NineBerry
  • 26,306
  • 3
  • 62
  • 93
noobcoder
  • 1
  • 1

0 Answers0