웹페이지 이메일
ASP.NET 웹 페이지 - 웹 메일 도우미
웹 메일 도우미 - 많은 유용한 ASP.NET 웹 도우미 중 하나입니다.
WebMail Helper
WebMail Helper를 사용하면 웹 애플리케이션에서 SMTP(Simple Mail Transfer Protocol)를 따라 이메일을 더 쉽게 보낼 수 있습니다.
전제 조건: 이메일 지원
이메일 사용 방법을 보여주기 위해 사용자가 페이지를 다른 페이지에 제출하고 지원 문제에 대한 이메일을 보낼 수 있는 입력 페이지를 만듭니다.
먼저: AppStart 페이지 편집
이 튜토리얼에서 데모 애플리케이션을 생성했다면 다음 콘텐츠가 포함된 _AppStart.cshtml이라는 페이지가 이미 있습니다.
_AppStart.cshtml
@{
WebSecurity. InitializeDatabaseConnection("사용자", "UserProfile", "UserId", "Email", true);
}
WebSecurity. InitializeDatabaseConnection("사용자", "UserProfile", "UserId", "Email", true);
}
WebMail 도우미를 활성화하려면 AppStart 페이지에 다음 WebMail 속성을 추가하세요.
_AppStart.cshtml
@{
WebSecurity.InitializeDatabaseConnection("Users ", "UserProfile" ", "사용자 ID", "이메일", 참);
WebMail.SmtpServer = "smtp.example.com";
WebMail.SmtpPort = 25;
WebMail.EnableSsl = false;
WebMail.UserName = "support@example.com";
WebMail .Password = "password-goes-here";
WebMail.From = "john@example.com";
}
WebSecurity.InitializeDatabaseConnection("Users ", "UserProfile" ", "사용자 ID", "이메일", 참);
WebMail.SmtpServer = "smtp.example.com";
WebMail.SmtpPort = 25;
WebMail.EnableSsl = false;
WebMail.UserName = "support@example.com";
WebMail .Password = "password-goes-here";
WebMail.From = "john@example.com";
}
속성 설명:
SmtpServer: 이메일을 보내는 데 사용되는 SMTP 서버의 이름입니다.
SmtpPort: 서버가 SMTP 트랜잭션(이메일)을 보내기 위해 사용하는 포트입니다.
EnableSsl: 서버가 SSL(Secure Socket Layer) 암호화를 사용하는 경우 값은 true입니다.
UserName: 이메일을 보내는 데 사용되는 SMTP 이메일 계정의 이름입니다.
비밀번호: SMTP 이메일 계정의 비밀번호입니다.
보낸 사람: 보낸 사람 주소 필드에 표시되는 이메일입니다(일반적으로 사용자 이름과 동일).
두 번째: 이메일 입력 페이지 만들기
그런 다음 입력 페이지를 만들고 이름을 Email_Input으로 지정합니다.
Email_Input.cshtml
<!DOCTYPE html>
<body> gt ;요청 지원</h1>
<form method="post" action="EmailSend.cshtml">
<label>사용자 이름:</label>
<input type="text name="customerEmail" / >
<label>문제에 대한 세부정보:</label>
<textarea name="customerRequest" cols="45"rows="4"></textarea>
<p><input type="submit" value="제출" /></p>
</form>
</body>
</html>
<body> gt ;요청 지원</h1>
<form method="post" action="EmailSend.cshtml">
<label>사용자 이름:</label>
<input type="text name="customerEmail" / >
<label>문제에 대한 세부정보:</label>
<textarea name="customerRequest" cols="45"rows="4"></textarea>
<p><input type="submit" value="제출" /></p>
</form>
</body>
</html>
전화 정보를 입력하기 위한 목적입니다. 새 페이지의 이메일로 정보.
그런 다음 이메일 보내기용 페이지를 만들고 이름을 Email_Send로 지정합니다.
Email_Send.cshtml@{ // 입력 읽기
var customerEmail = Request["customerEmail"]; var customerRequest = Request["customerRequest"];
try
{
// 이메일 보내기
WebMail.Send(to:"someone@example.com", subject: "도움말 요청 - " + customerEmail, body: customerRequest );
}
catch (예외 예 )
{
<text>@ex</text>
}
}
ASP.NET 웹 페이지 애플리케이션에서 이메일을 보내는 방법에 대해 자세히 알고 싶으십니까? WebMail 개체를 참조하세요. 참조 매뉴얼. try
{
// 이메일 보내기
WebMail.Send(to:"someone@example.com", subject: "도움말 요청 - " + customerEmail, body: customerRequest );
}
catch (예외 예 )
{
<text>@ex</text>
}
}