这是发送电子邮件返回布尔值的方法
public bool SendEmail()
{
bool isSend = true;
try
{
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.Credentials = new NetworkCredential("kips321786@gmail.com","umerzaman100");
smtp.EnableSsl = true;
MailAddress to = new MailAddress("m.umer.zaman@gmail.com");
MailAddress from = new MailAddress("kips321786@gmail.com");
MailMessage mail = new MailMessage(from, to);
check = to.ToString();
mail.Subject = "This is a Test Mail ";
mail.Body = "WoW Mail is Receive";
lblStatus.Text=" Sending email...";
smtp.Send(mail);
Thread.Sleep(10000);
}
catch (Exception e)
{
check = e.Message.ToString();
isSend = false;
}
return isSend;
}
这是我的Mial Proccess方法,Async我有取消按钮,阻止在取消按钮方法中发送我应该正确的电子邮件
public async void MailProccess(CancellationToken cancelToken =new CancellationToken())
{
Task<bool> task2 = new Task<bool>(SendEmail);
task2.Start();
bool msg = await task2;
if (msg)
{
lblStatus.Text = "Your Email Send....";
}
else
{
lblStatus.Text = "Your Email not Send....";
}
}
这是我的取消按钮方法
private void btnCancelEmail_Click(object sender, EventArgs e)
{
cts.Cancel();
lblStatus.Text = "Email Sending Cancel";
}
答案 0 :(得分:-3)
try{
smtp.Send(mail);
isSend = true;
}
catch(Exception ex)
{
isSend = false
}
请试试这个