我正在创建一个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;