在ASP.NET中實現發郵件功能,你可以使用.NET框架自帶的System.Net.Mail
命名空間。以下是一個簡單的示例,展示了如何使用C#發送電子郵件:
首先,確保你已經在項目中引用了System.Net.Mail
命名空間。
在你的ASPX頁面或代碼文件中,添加以下代碼:
using System.Net;
using System.Net.Mail;
// 設置收件人、發件人和SMTP服務器的地址
string to = "recipient@example.com";
string from = "your-email@example.com";
string smtpServer = "smtp.example.com";
// 設置SMTP服務器的端口
int port = 587; // 或者使用465端口(對于SSL)
// 設置電子郵件憑據
string userName = "your-email@example.com"; // 你的郵箱地址
string password = "your-email-password"; // 你的郵箱密碼
// 創建MailMessage對象
MailMessage mail = new MailMessage();
// 設置發件人、收件人和主題
mail.From = new MailAddress(from);
mail.To.Add(new MailAddress(to));
mail.Subject = "Hello from ASP.NET";
// 設置電子郵件正文
mail.Body = "This is a test email sent from an ASP.NET application.";
// 設置電子郵件的HTML內容
mail.IsBodyHtml = true;
mail.Body = "<h1>Hello from ASP.NET</h1><p>This is a test email sent from an ASP.NET application.</p>";
// 創建SmtpClient對象
SmtpClient smtp = new SmtpClient(smtpServer, port);
// 設置SMTP服務器的安全設置
smtp.Credentials = new NetworkCredential(userName, password);
smtp.EnableSsl = true;
// 發送電子郵件
try
{
smtp.Send(mail);
Response.Write("Email sent successfully!");
}
catch (Exception ex)
{
Response.Write("Error sending email: " + ex.Message);
}
請注意,你需要將示例中的to
、from
、smtpServer
、userName
和password
替換為實際的值。此外,如果你的郵箱使用的是SSL加密,請將port
設置為465。
在實際項目中,為了安全起見,建議不要將電子郵件密碼直接寫在代碼中。可以使用App.config或Web.config文件中的<appSettings>
部分來存儲敏感信息,并在代碼中使用ConfigurationManager.AppSettings["key"]
來訪問它們。