ASP.NET MVC 3 Beta初體驗之實用的WebMail

作者: 麒麟  來源: 博客園  發布時間: 2010-11-02 14:32  閱讀: 917 次  推薦: 0   原文鏈接   [收藏]  

  Asp.net MVC 3 Beta中提供了非常實用發送郵件的組件:WebMail。我試用了一下,和System.Web.Mail類似。這篇文章將簡單介紹一下這個組件的使用。通過分成不帶附件的郵件發送和帶附件的郵件發送兩種情況進行講解。用一個請求幫助的應用場景為例。

  不帶附件的郵件發送

  首先定義Controller。EmailRequest用于請求一個發送郵件的頁面,ProcessRequest用去處理發送郵件的請求,并在View中發送郵件。

代碼
 
[HttpGet]
public ActionResult EmailRequest()
{

return View();
}

[HttpPost]

public ActionResult ProcessRequest()
{

return View();
}

  EmailRequest.cshtml代碼如下:

代碼
 
<!DOCTYPE html>
<html>
<head>
<title>求助中心</title></head><body>
<h2>發送郵件求助</h2>
<form method="post" action="ProcessRequest">
<div>你的姓名:
<input type="text" name="customerName" />
</div>
<div>你的問題描述: <br />
<textarea name="customerRequest" cols="45" rows="4">
</textarea>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</form>
</body>
</html>

   發送郵件的View:

 
@{
var customerName = Request["customerName"];
var customerRequest = Request["customerRequest"];
try
{
// 初始化
WebMail.SmtpServer = "smtp.126.com";
WebMail.SmtpPort = 25;
WebMail.EnableSsl = false;
WebMail.UserName = "zhuqi0";
WebMail.From = "zhuqi0@126.com";
WebMail.Password = "**********";
// 發送郵件
WebMail.Send(to:"zhuqi0@126.com",
subject: "來自 - " + customerName+"的求助",
body: customerRequest
);
}
catch (Exception ex )
{

<text>
<b>郵件發送<em>失敗</em></b>
代碼中沒有提供正確的SMTP服務名,用戶名,密碼等信息。
</text>
}
}

<!DOCTYPE html>
<html><head>
<title>求助中心</title></head><body>
<p>非常抱歉聽到你有麻煩,
<b>@customerName</b>.
</p>
<p>關于下面問題的郵件已經發送給我們的客服,相關部門會及時處理。</p>
<p><b>@customerRequest</b></p></body></html>

  運行:

  發送成功頁面:

  郵件通知:

  帶附件的郵件發送:

  帶附件的郵件發送類似,不過需要知道附加地址的列表,發送郵件的帶附件的郵件代碼如下:

 
@{
var customerName = Request["customerName"];
var subjectLine = Request["subjectLine"];
var fileAttachment = Request["fileAttachment"];
try {
// 初始化
WebMail.SmtpServer = "smtp.126.com";
WebMail.SmtpPort = 25;
WebMail.EnableSsl = false;
WebMail.UserName = "zhuqi0";
WebMail.From = "zhuqi0@126.com";
WebMail.Password = "**********";
// 創建包含附件的數組
var filesList = new string [] { fileAttachment };
// 添加附件和發送郵件
WebMail.Send(to: "zhuqi0@126.com",subject: subjectLine,
body: "File attached.
<br />From: " + customerName,
filesToAttach: filesList);
}
catch (Exception ex)
{

<text>
<b>郵件發送<em>失敗</em></b>
代碼中沒有提供正確的SMTP服務名,用戶名,密碼等信息。
</text>
}
}

<!DOCTYPE html>
<html>
<head>
<title>求助中心</title>
</head>
<body>
<p><b>@customerName</b>, 感謝你的支持.</p> <p>關于下面問題的郵件已經發送給我們的客服,相關部門會及時處理。 <b>
@fileAttachment</b>
file attached.</p>
</body>
</html>

  從上面的兩種情況我們可以看到,WebMail和System.Web.Mail使用的方式是一樣的,不過在Asp.net MVC 3 Beta中WebMail使用起來更簡便了。

  第一步:初始化,指定郵件發送服務器。

  WebMail.SmtpServer = "smtp.126.com";    

  第二步:指定端口。

  WebMail.EnableSsl = false;  

  第三步:指定用戶名。

  WebMail.UserName = "zhuqi0";     

  第四步:你的郵箱地址和密碼。

  WebMail.From = "zhuqi0@126.com";       
  WebMail.Password = "********";   

  第五步:如果有附件指定附件地址。

  var filesList = new string [] { fileAttachment };

  第六步:郵件發送。

  WebMail.Send(to: "zhuqi0@126.com",subject: subjectLine,           
  body: "File attached. <br />From: " + customerName,
  filesToAttach: filesList); 

  總結:本文簡單介紹了一下ASP.NET MVC 3 Beta中WebMail的使用。

  代碼:http://files.cnblogs.com/zhuqil/MvcApplicationWebMail.rar

0
0
 
標簽:ASP.NET MVC 3
 
 

文章列表

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()