我搜索了很多网站。但我无法理解他们所说的话。请参考互联网,他们告诉他们创建CDO文件。
请帮我在我的项目中发送邮件。我有3个文本框:
答案 0 :(得分:0)
使用以下代码发送邮件。
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
mail.From = new MailAddress("me@mydomain.com");
mail.To.Add("u@urdomain.com,rkrishtring@gmail.com");
mail.Subject = "Report";
mail.Body = "This is a Stack overflow using report";
Attachment attachment = new Attachment(filename);
mail.Attachments.Add(attachment);
SmtpServer.Port = 25;
SmtpServer.Credentials = new System.Net.NetworkCredential("username", "password");
SmtpServer.EnableSsl = true;
SmtpServer.Send(mail);