using System; using System.Net; using System.Net.Mail; using System.Windows.Forms; namespace YourNamespace { public partial class YourForm : Form { public YourForm() { InitializeComponent(); } private void btnSendEmail_Click(object sender, EventArgs e) { try { // 設定 SMTP 伺服器 SmtpClient smtpClient = new SmtpClient("aaaa.com.tw", 110) { Credentials = new NetworkCredential("abc@aaaa.com.tw", "123456"), EnableSsl = true // 根據伺服器需求選擇是否啟用 SSL }; // 建立郵件內容 MailMessage mailMessage = new MailMessage { From = new MailAddress("abc@aaaa.com.tw"), Subject = "ABC Here", Body = @" <html> <body> <table border='1'> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> <tr> <td>Cell 3</td> <td>Cell 4</td> </tr> </table> </body> </html>", IsBodyHtml = true }; // 添加收件人 mailMessage.To.Add("test1@gmail.com"); mailMessage.To.Add("test2@gmail.com"); // 發送郵件 smtpClient.Send(mailMessage); MessageBox.Show("郵件已成功發送!", "成功", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show($"發送郵件時出錯: {ex.Message}", "錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } }
using System.Net; using System.Net.Mail; using System.Net.Mime; ... try { SmtpClient mySmtpClient = new SmtpClient("my.smtp.exampleserver.net"); // set smtp-client with basicAuthentication mySmtpClient.UseDefaultCredentials = false; System.Net.NetworkCredential basicAuthenticationInfo = new System.Net.NetworkCredential("username", "password"); mySmtpClient.Credentials = basicAuthenticationInfo; // add from,to mailaddresses MailAddress from = new MailAddress("test@example.com", "TestFromName"); MailAddress to = new MailAddress("test2@example.com", "TestToName"); MailMessage myMail = new System.Net.Mail.MailMessage(from, to); // add ReplyTo MailAddress replyTo = new MailAddress("reply@example.com"); myMail.ReplyToList.Add(replyTo); // set subject and encoding myMail.Subject = "Test message"; myMail.SubjectEncoding = System.Text.Encoding.UTF8; // set body-message and encoding myMail.Body = "<b>Test Mail</b><br>using <b>HTML</b>."; myMail.BodyEncoding = System.Text.Encoding.UTF8; // text or html myMail.IsBodyHtml = true; mySmtpClient.Send(myMail); } catch (SmtpException ex) { throw new ApplicationException ("SmtpException has occured: " + ex.Message); } catch (Exception ex) { throw ex; }