HTML电子邮件:MS Outlook和Gmail中未显示图像

时间:2016-08-24 07:08:54

标签: html email outlook gmail html-table

我正在创建一个HTML电子邮件程序。当我检查雅虎邮件时,电子邮件中有图像。但它不存在于Gmail和MS Outlook中,它也在Outlook Mail中显示。

所以图像显示在Yahoo,Outlook邮件中。但不能在gmail和本地Outlook软件中显示。

选中 gmail设置的单选按钮始终允许外部图片

我想知道表格结构会影响到不同的电子邮件引擎吗?



public function rules()
{
 return array(
    array('text', 'required'),
  array('text', 'validateWordLength')
);
}


public function validateWordLength($attribute,$params)
{
    $total_words= str_word_count($this->text);
    if($total_words>4000)
    {
       $this->addError('text', 'Your description length is exceeded');
    }
    if($total_words<5)
    {
       $this->addError('text', 'Your description length is too small');
    } 
}
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

将您的图像放在服务器上,然后提供路径,例如

路径:“ http://www/example.com/images/xyz.jpeg

相关问题