华南俳烁实业有限公司

考試首頁(yè) | 考試用書(shū) | 培訓(xùn)課程 | 模擬考場(chǎng) | 考試論壇  
  當(dāng)前位置:編程開(kāi)發(fā) > DotNET > ASP.Net > 文章內(nèi)容
  

ASP.NETWebPages教程:WebMail幫助器

 [ 2016年4月18日 ] 【

WebMail 幫助器

WebMail 幫助器使我們更容易從 web 應(yīng)用程序中使用 SMTP 來(lái)發(fā)送電郵。

腳本: Email 支持

為了演示電子郵件的使用,我們將創(chuàng)建用于技術(shù)支持的輸入頁(yè)面,讓用戶(hù)向另一個(gè)頁(yè)面提交該頁(yè)面,然后發(fā)送一封有關(guān)支持問(wèn)題的電子郵件。

首先:編輯您的 AppStart 頁(yè)面

如果您曾構(gòu)建過(guò)本教程中的 DEMO 應(yīng)用程序,那么站點(diǎn)中應(yīng)該存在擁有如下內(nèi)容的 _AppStart.cshtml 頁(yè)面:

_AppStart.cshtml

@{
WebSecurity.InitializeDatabaseConnection("Users", "UserProfile", "UserId", "Email", 
true);
}

如需初始化 WebMail 幫助器,請(qǐng)向您的 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)?/H3>

SmtpServer: 發(fā)送電郵所使用的 SMTP 服務(wù)器的名稱(chēng)。

SmtpPort: 發(fā)送 SMTP transactions (電郵) 所用的服務(wù)器端口。

EnableSsl: True,如果服務(wù)器應(yīng)該使用 SSL (Secure Socket Layer) 加密。

UserName: 發(fā)送電郵所用的 SMTP email 賬戶(hù)的名稱(chēng)。

Password: SMTP 電郵賬戶(hù)的密碼。

From: 出現(xiàn)在 from 欄中的電郵地址(通常與 UserName 相同)。

第二:創(chuàng)建電郵輸入頁(yè)面

然后創(chuàng)建輸入頁(yè)面,名為 Email_Input:

Email_Input.cshtml

 
 
 

Request for Assistance

輸入頁(yè)面的作用是收集信息,然后把數(shù)據(jù)提交到一個(gè)能夠?qū)⑿畔⒆鳛猷]件來(lái)發(fā)送的新頁(yè)面。

第三:創(chuàng)建郵件發(fā)送頁(yè)面

然后創(chuàng)建用于發(fā)送電郵的頁(yè)面,名為 Email_Send:

Email_Send.cshtml

@{ // Read input
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 )
{
@ex 
}
}

本文糾錯(cuò)】【告訴好友】【打印此文】【返回頂部
將考試網(wǎng)添加到收藏夾 | 每次上網(wǎng)自動(dòng)訪(fǎng)問(wèn)考試網(wǎng) | 復(fù)制本頁(yè)地址,傳給QQ/MSN上的好友 | 申請(qǐng)鏈接 | 意見(jiàn)留言 TOP
關(guān)于本站  網(wǎng)站聲明  廣告服務(wù)  聯(lián)系方式  站內(nèi)導(dǎo)航  考試論壇
Copyright © 2007-2013 中華考試網(wǎng)(Examw.com) All Rights Reserved
碌曲县| 定州市| 平泉县| 修水县| 磐石市| 永清县| 香格里拉县| 彝良县| 漳州市| 张北县| 大渡口区| 根河市| 鹰潭市| 蓝田县| 宜兰市| 塔河县| 安义县| 彭山县| 迭部县| 佛学| 保德县| 虞城县| 普定县| 苗栗市| 甘洛县| 炎陵县| 诸暨市| 云霄县| 垣曲县| 永仁县| 鄄城县| 阿拉善左旗| 沁源县| 阿克陶县| 天等县| 乌海市| 莱芜市| 大姚县| 中卫市| 莲花县| 阳东县|