I use YII-Mail just by copying the sample but I always get some ascii charcters in my generated links
Where they come from and how to avoid them ?
$message = new YiiMailMessage;
$message->view = 'mail';
$message->setBody(array('model'=>$model), 'text/html');
$message->subject = Yii::t('tr','my subject');
$message->addTo('
[email protected]');
$message->from = '
[email protected]';
Yii::app()->mail->send($message);
and in view file 'mail'
<h1><?php echo(Yii::t('tr','This is HTML mail')); ?></h1>
<?php echo CHtml::link('Mylink', array('controller/view', 'id'=>$model->id)); ?>
The resulted email source looks like this
<h1>This is HTML mail</h1>
<a href=3D"/testdrive/index.php?r=3D ....