Hi, I am having a strange problem. When sending email with international chars (like á) the recipient gets a different one (like á!) in the message.
My class and view are UTF-8 encoded and my sending code is like this
$mail = new Zend_Mail();
$varHtmlEmail = $view->render("msg.tpl");
$mail->setBodyHtml($varHtmlEmail, 'utf-8');
$mail->setFrom($senderEmail, $senderName);
$mail->addTo($recipientEmail);
$mail->setSubject($subject);
return $mail->send();
What am I doing wrong?
