asp.net web pages - webmail 幫助器
webmail 幫助器 - 眾多有用的 asp.net web 幫助器之一。
webmail 幫助器
webmail 幫助器讓發(fā)送郵件變得更簡(jiǎn)單,它按照 smtp(simple mail transfer protocol 簡(jiǎn)單郵件傳輸協(xié)議)從 web 應(yīng)用程序發(fā)送郵件。
前提:電子郵件支持
為了演示如何使用電子郵件,我們將創(chuàng)建一個(gè)輸入頁(yè)面,讓用戶(hù)提交一個(gè)頁(yè)面到另一個(gè)頁(yè)面,并發(fā)送一封關(guān)于支持問(wèn)題的郵件。
第一:編輯您的 appstart 頁(yè)面
如果在本教程中您已經(jīng)創(chuàng)建了 demo 應(yīng)用程序,那么您已經(jīng)有一個(gè)名為 _appstart.cshtml 的頁(yè)面,內(nèi)容如下:
_appstart.cshtml
websecurity.initializedatabaseconnection("users", "userprofile", "userid", "email", true);
}
要啟動(dòng) webmail 幫助器,向您的 appstart 頁(yè)面中增加如下所示的 webmail 屬性:
_appstart.cshtml
websecurity.initializedatabaseconnection("users", "userprofile", "userid", "email", true);
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";
}
屬性解釋?zhuān)?/p>
smtpserver: 用于發(fā)送電子郵件的 smtp 服務(wù)器的名稱(chēng)。
smtpport: 服務(wù)器用來(lái)發(fā)送 smtp 事務(wù)(電子郵件)的端口。
enablessl: 如果服務(wù)器使用 ssl(secure socket layer 安全套接層)加密,則值為 true。
username: 用于發(fā)送電子郵件的 smtp 電子郵件賬戶(hù)的名稱(chēng)。
password: smtp 電子郵件賬戶(hù)的密碼。
from: 在發(fā)件地址欄顯示的電子郵件(通常與 username 相同)。
第二:創(chuàng)建一個(gè)電子郵件輸入頁(yè)面
接著創(chuàng)建一個(gè)輸入頁(yè)面,并將它命名為 email_input:
email_input.cshtml
<html>
<body>
<h1>request for assistance</h1>
<form method="post" action="emailsend.cshtml">
<label>username:</label>
<input type="text name="customeremail" />
<label>details about the problem:</label>
<textarea name="customerrequest" cols="45" rows="4"></textarea>
<p><input type="submit" value="submit" /></p>
</form>
</body>
</html>
輸入頁(yè)面的目的是手機(jī)信息,然后提交數(shù)據(jù)到可以將信息作為電子郵件發(fā)送的一個(gè)新的頁(yè)面。
第三:創(chuàng)建一個(gè)電子郵件發(fā)送頁(yè)面
接著創(chuàng)建一個(gè)用來(lái)發(fā)送電子郵件的頁(yè)面,并將它命名為 email_send:
email_send.cshtml
var customeremail = request["customeremail"];
var customerrequest = request["customerrequest"];
try
{
// send email
webmail.send(to:"someone@example.com", subject: "help request from - " + customeremail, body: customerrequest );
}
catch (exception ex )
{
<text>@ex</text>
}
}
想了解更多關(guān)于 asp.net web pages 應(yīng)用程序發(fā)送電子郵件的信息,請(qǐng)查閱:webmail 對(duì)象參考手冊(cè)。