2016-11-29 60 views
-8

你好如何從c#中的郵件中獲取評論和評分?如何使用html格式的gmail.i給出了鏈接,當我點擊它時將它重定向到下一頁是Mail.aspx。所以我怎樣才能發送我的評級和郵件mail.aspx文件,我想我的結果存儲在數據庫中。如何使用C#格式的HTML格式發送郵件

+0

請說明你是什麼意思?你只是想發送一個HTML體的電子郵件?如果是這樣,這與評論和評分......或者Gmail有什麼關係? – Robba

+1

Stackoverflow不是您的個人代碼編寫服務。向我們展示你到目前爲止所嘗試的,並解釋你的問題。 – RandomStranger

+0

[如何發送HTML格式的電子郵件?](http://stackoverflow.com/questions/8628683/how-to-send-html-formatted-email) – Minelli

回答

1

設置isBodyHtml爲true,允許你使用HTML標籤在郵件正文:

SmtpClient sc = new SmtpClient("mail address"); 
MailMessage msg = null; 

try 
{ 
msg = new MailMessage("[email protected]", 
    "[email protected]", "Message from PSSP System", 
    "This email sent by the PSSP system<br />" + 
    "<b>this is bold text!</b>"); 

    msg.IsBodyHtml = true; 

    sc.Send(msg); 
} 

catch (Exception ex) 
{ 
    throw ex; 
} 

finally 
{ 
    if (msg != null) 
    { 
     msg.Dispose(); 
    } 
} 

使用msg.IsBodyHtml = true;