csharp 发送电子邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 发送电子邮件相关的知识,希望对你有一定的参考价值。
using System.Net.Mail;
using System.Windows.Forms;
void SendEMail(
string from, // e.g., "sender@abc.com"
string to, // e.g., "receiver@abc.com"
string subject,// e.g., "Please read this!"
string body) // e.g., "Thanks for the memories."
{
try
{
// Construct a new e-mail message
SmtpClient client = new SmtpClient (smtpClient);
client.Send (from, to, subject, body);
}
catch (SmtpException ex)
{
MessageBox.Show ( ex.Message, "SendEMail: " + ex.Message, MessageBoxButtons.OK, MessageBoxIcon.Error );
}
}
以上是关于csharp 发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章
csharp 致电SMO并发送电子邮件
csharp 发送电子邮件
csharp 发送电子邮件
csharp 发送电子邮件
csharp 再次发送电子邮件模板 - 拉动公司设置
csharp 使用链接方法模式使用C#.NET发送电子邮件