ASP.NET C#에서 이메일 보내기
ASP.NET을 처음 사용하고 이메일을 보내려는 경우 보낸 사람을 이해하세요/ 수신기 SMTP 개념이 중요합니다. SMTP(Simple Mail Transfer Protocol)는 이메일 전송 규칙을 정의합니다.
코드 샘플:
ISP에서 제공한 올바른 SMTP 주소를 활용하는 다음 코드를 고려하세요.
using System; using System.Net.Mail; public partial class SendMail : System.Web.UI.Page { protected void Btn_SendMail_Click(object sender, EventArgs e) { MailMessage mailObj = new MailMessage( txtFrom.Text, txtTo.Text, txtSubject.Text, txtBody.Text); SmtpClient SMTPServer = new SmtpClient("smtp-proxy.tm.net.my"); // Replace the hardcoded credentials with your own credentials SMTPServer.Credentials = new System.Net.NetworkCredential("yourusername", "yourpassword"); SMTPServer.Port = 25; // Adjust the port number according to the SMTP server's configuration (e.g., Google uses port 587) SMTPServer.EnableSsl = true; // This will depend on the SMTP server's security requirements try { SMTPServer.Send(mailObj); } catch (Exception ex) { Label1.Text = ex.ToString(); } } }
올바른 SMTP 주소와 포트를 사용하고, 자격 증명을 지정하고, 필요한 경우 SSL 암호화를 활성화하면 성공적으로 메일을 보낼 수 있습니다. ASP.NET C# 애플리케이션의 이메일.
위 내용은 SMTP를 사용하여 ASP.NET C#에서 이메일을 보내는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!