다음을 통해 공유


PasswordRecovery.MailDefinition 속성

정의

사용자에게 새 암호 또는 복구된 암호를 보내는 데 사용되는 전자 메일 메시지의 특성을 정의하는 속성 컬렉션에 대한 참조를 가져옵니다.

public:
 property System::Web::UI::WebControls::MailDefinition ^ MailDefinition { System::Web::UI::WebControls::MailDefinition ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
[System.Web.UI.Themeable(false)]
public System.Web.UI.WebControls.MailDefinition MailDefinition { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
[<System.Web.UI.Themeable(false)>]
member this.MailDefinition : System.Web.UI.WebControls.MailDefinition
Public ReadOnly Property MailDefinition As MailDefinition

속성 값

사용자에게 암호를 보내는 데 사용되는 전자 메일 메시지의 특성을 정의하는 속성이 포함된 MailDefinition 대한 참조입니다.

특성

예제

다음 코드 예제에서는 SendingMail 이벤트를 사용하여 MailDefinition 속성의 하위 속성을 설정하여 암호 전자 메일 메시지를 정의합니다.

<%@ page language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

  void PasswordRecovery1_SendingMail(object sender, MailMessageEventArgs e)
  {
    e.Message.IsBodyHtml = false;
    e.Message.Subject = "New password on Web site.";
  }
    
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
      <asp:passwordrecovery 
         id="PasswordRecovery1" 
         runat="server"
         maildefinition-from="userAdmin@your.site.name.here"
         onsendingmail="PasswordRecovery1_SendingMail">
      </asp:passwordrecovery>
    </form>
  </body>
</html>
<%@ page language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

  Sub PasswordRecovery1_SendingMail(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MailMessageEventArgs)

    e.Message.IsBodyHtml = False
    e.Message.Subject = "New password on Web site."
    
  End Sub
    
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
      <asp:passwordrecovery
         id="PasswordRecovery1" 
         runat="server" 
         maildefinition-from="userAdmin@your.site.name.here"
         onsendingmail="PasswordRecovery1_SendingMail">
      </asp:passwordrecovery>
    </form>
  </body>
</html>

설명

MailDefinition 속성은 사용자에게 보낸 암호 전자 메일 메시지의 형식 및 콘텐츠를 정의하는 데 사용하는 속성 그룹에 대한 참조를 반환합니다. 일반적인 설정에는 제목 줄과 보낸 사람의 반송 주소가 포함됩니다. 속성의 전체 목록은 MailDefinition 클래스를 참조하세요.

이 속성은 읽기 전용입니다. 그러나 반환하는 MailDefinition 개체의 속성을 설정할 수 있습니다. 이러한 속성은 Property-Subproperty형식에서 선언적으로 설정할 수 있습니다. 여기서 SubpropertyMailDefinition 클래스의 속성(예: MailDefinition-Subject)을 나타냅니다. Property.Subproperty 양식에서 프로그래밍 방식으로 속성을 설정할 수도 있습니다(예: MailDefinition.Subject).

이 속성은 테마 또는 스타일시트 테마로 설정할 수 없습니다. 자세한 내용은 ThemeableAttributeASP.NET 테마 및 스킨참조하세요.

MailDefinition 개체에서 전자 메일 메시지를 만들면 다음 표에 표시된 대체 항목이 만들어집니다. 대체 텍스트는 대/소문자를 구분하지 않습니다.

대체 텍스트 다음으로 대체됨
<%UserName%> 사용자의 웹 사이트 사용자 이름입니다.
<%암호%> 사용자의 복구된 암호입니다.

MailDefinition 개체의 IsBodyHtml 속성이 true경우 메시지 수신자의 사이트 간 스크립팅 보안 취약성을 방지하도록 메일 메시지의 내용이 HTML로 인코딩됩니다.

적용 대상

추가 정보