2016-11-19 95 views
3

我正在通過拖放功能生成電子郵件模板。 我是新的,我跟着這個教程linkHTML電子郵件模板在html標記中有額外的空白空間

但是,當我發送電子郵件,有時我得到額外的空間在一個HTML標記。而且我還在URL鏈接或圖像src中獲得了額外的「+」號。

我的HTML:

<div style="inline-styles-here"> 
    <img src="abc.com/open_link.php" class="CToWUd"> 
</div> 

結果:

<div><!-- inline styles is missing --> 
    <img src="abc.com/open_li+nk.php" class="CToWUd"><!-- There is + at the src link --> 
< /div> <!-- There is space in the closing tag --> 

有時,我也有我的內聯樣式一個失蹤了。

我該如何避免這種情況?

回答

0

你給的文件名作爲<img src="abc.com/open_li+nk.php" class="CToWUd">

俊男它是<img src="abc.com/open_link.php" class="CToWUd">

除去額外的空間,

<table width="600px" cellspacing="0" cellpadding="0" border="0" align="center" class="bg-color1" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;"> 
<tbody> 
    <tr><td>Your email content</td></tr> 
</tbody> 
</table> 

你可以參考this link

希望這會有所幫助。

+0

我編輯了我的文章 – AAADev