이 가이드에서는 ASP.NET C# 및 SMTP(Simple Mail Transfer Protocol)를 사용하여 이메일을 보내는 방법을 보여줍니다.
SMTP의 이해
SMTP(Simple Mail Transfer Protocol)는 이메일 전송을 위한 표준 프로토콜입니다. 발신자와 수신자 간의 중계 역할을 하려면 SMTP 서버가 필요합니다. 이메일 전송 기능을 구성하려면 서버 주소(SMTP 주소)가 필요합니다.
ASP.NET C#에서 이메일 전송 구현
ASP.NET C# 애플리케이션에서 이메일을 보내려면 ASPX 페이지와 해당 코드 숨김 파일을 만듭니다. 코드 숨김에 다음 코드를 사용하세요.
<code class="language-csharp">using System.Net.Mail; using System.Net; protected void Btn_SendMail_Click(object sender, EventArgs e) { // Email message details MailMessage mail = new MailMessage( txtFrom.Text, // Sender's email address txtTo.Text, // Recipient's email address txtSubject.Text, // Email subject txtBody.Text); // Email body // SMTP client configuration SmtpClient smtp = new SmtpClient(); smtp.Host = "smtp.gmail.com"; // Replace with your SMTP server address smtp.Port = 587; // Replace with your SMTP server port smtp.EnableSsl = true; // Enable SSL for secure communication smtp.Credentials = new NetworkCredential("[email protected]", "yourPassword"); // Replace with your email and password // Send the email try { smtp.Send(mail); Label1.Text = "Email sent successfully!"; } catch (Exception ex) { Label1.Text = "Error sending email: " + ex.Message; } }</code>
중요 고려 사항:
"smtp.gmail.com"
, 587
및 자격 증명을 SMTP 서버의 세부 정보로 바꾸세요. 인터넷 서비스 제공업체(ISP)가 SMTP를 지원하는지, 이메일 주소와 비밀번호가 올바른지 확인하세요. Host
값은 SMTP 서버 주소(예: "smtp-proxy.tm.net.my"
)여야 합니다.
위 내용은 ASP.NET C# 및 SMTP를 사용하여 이메일을 보내는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!