2016-11-01 53 views
2

允許訪問不太安全的應用程序後here我能夠使用帶聯機樣式的gmail向我發送電子郵件。MailKit中的HTML電子郵件正文的字體更改和樣式

using MailKit.Net.Smtp; // for SmtpClient 
using MimeKit; // for MimeMessage, MailboxAddress and MailboxAddress 

var message = new MimeMessage(); 
message.From.Add(new MailboxAddress("Hasan Yousef", "[email protected]")); 
message.To.Add(new MailboxAddress("Personal", "[email protected]")); 
message.To.Add(new MailboxAddress("Office", "[email protected]")); 
message.Subject = "How you doin'?"; 

string num = "13.5 million"; 

var bodyBuilder = new BodyBuilder(); 
bodyBuilder.HtmlBody = @" 
<div style='background-color:black;color:white;padding:20px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);'> 
      <h1 style='text-align: center; font-family: 'Sigmar One', cursive;'>Welcome to Ben's Minecraft</h1> 
      <img src='https://www.bk-international.com/mahout_cms/project/themes/default/images/de/logo.png' alt='HTML5' style='width:84px;height:47px'><br> 
      <a href='https://www.bk-international.com/de_en/'>Bischof + Klein</a> 
      <h2>London</h2> 
      <p>London is the capital city of England. 
      It is the most populous city in the United Kingdom, with a metropolitan area of over <span style='color:red'> 
<i><b>" + num + 
@"</b></i></span> 
inhabitants.</p> 
      <p style='background-color:#ffc;color:black;'> Hope you liked the above</p> 
      <table> 
      <tr> 
       <th>Name</th> 
       <th>Description</th> 
      </tr> 
      <tr> 
       <td>A</td> 
       <td>Description of A</td> 
      </tr> 
      <tr> 
       <td>B</td> 
       <td>Description of B</td> 
      </tr> 
      </table> 
      <ol> 
       <li>London</li> 
       <li>Paris</li> 
       <li>Tokyo</li> 
      </ol> 
      <img src='https://www.bk-international.com/mahout_cms/project/themes/default/images/subhead.png' alt='HTML5' style='width:193px;height:9px'> 
</div>   
      "; 

message.Body = bodyBuilder.ToMessageBody(); 

/*  message.Body = new TextPart("plain") 
     { 
      Text = @"Hey Chandler,I just wanted to let you know that Monica and I were going to go play some paintball, you in?-- Joey" 
     }; 
*/ 
using (var client = new SmtpClient()) 
{ 
     client.Connect("smtp.gmail.com", 587); 
     client.AuthenticationMechanisms.Remove("XOAUTH2"); // due to enabling less secure apps access 

     client.Authenticate("[email protected]", "myEmailPassward"); 
     client.Send(message); 
     client.Disconnect(true); 
} 

我的問題是: 我如何可以改變字體,我嘗試添加下面的頭腳本,但沒有奏效。

<head> 
    <link href='https://fonts.googleapis.com/css?family=Sigmar+One' rel='stylesheet' type='text/css'> 
</head> 

我注意到在Gmail中的字體顯示比我的Outlook中顯示的字體完全不同,所以我需要統一的字體,以確保每個人讀它的任何電子郵件客戶端,他用同樣的方式。

+2

你有沒有檢查[這](http://stackoverflow.com/questions/8012799/do-we-still-need-to-use-font-tags-in-html-emails)話題?它似乎是同樣的問題... 也看看這個網站:https://www.campaignmonitor.com/css/用於在所有郵件客戶端設置可接受的字體 –

回答

1

按照E.B.評論上方,指的thisthis,並考慮在電子郵件CSS在不同瀏覽器和/或電子郵件客戶端的處理方式不同,對我來說是最合適的選擇,我發現使用內嵌樣式按以下:

<div style='background-color:black;color:white;padding:20px; font-family:Arial, Helvetica;color:#555555;font-size:12px;'> 
相關問題