PasswordRecovery.MailDefinition 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得屬性集合的參考,這些屬性會定義用來傳送新密碼或復原密碼給使用者的電子郵件訊息特性。
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
中宣告設定這些屬性,其中 Subproperty
代表 MailDefinition 類別的屬性(例如,MailDefinition-Subject
)。 您也可以以程式設計方式在表單 Property.Subproperty
中設定屬性(例如,MailDefinition.Subject
)。
這個屬性不能由主題或樣式表單主題設定。 如需詳細資訊,請參閱 ThemeableAttribute 和 ASP.NET 主題和面板。
從 MailDefinition 物件建立電子郵件訊息時,它會進行下表所示的替代專案。 替代文字不區分大小寫。
替換文字 | 取代為 |
---|---|
<%UserName %> |
用戶的網站用戶名稱。 |
<%密碼%> | 使用者的已復原密碼。 |
如果 MailDefinition 物件的 IsBodyHtml 屬性是 true
,郵件訊息的內容會經過 HTML 編碼,以防止郵件收件者的跨網站腳本安全性弱點。