我有一臺Pocket PC與Windows cE6.0。我想在c#中使用緊湊框架發送電子郵件。 我已經嘗試了下面的代碼。但我總是得到錯誤在線smtp.Send(message)
,說明smpt exception unhand led
。使用c#發送電子郵件使用緊湊框架
private void button1_Click(object sender, EventArgs e)
{
MailMessage msg = new MailMessage();
msg.From = new MailAddress("[email protected]");
msg.To.Add("[email protected]");
msg.Subject = "email7";
msg.Body = "sample body";
SmtpClient smtp = new SmtpClient("smtp.gmail.com");
smtp.Send(msg);
}
能否請您粘貼完整的例外呢? –
嘗試添加像這樣的端口:SmtpClient smtp = new SmtpClient(「smtp.gmail.com」,587); – smoore4