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 -->
有時,我也有我的內聯樣式一個失蹤了。
我該如何避免這種情況?
我編輯了我的文章 – AAADev