Mam niestandardowy moduł, który próbuję wygenerować wiadomości e-mail HTML z wykorzystaniem funkcji drupal_mail (D7). Mail nadchodzi, a nawet pokazuje tekst/html, jednak coś, co wydaje się gdzieś odpychać HTMl, zanim trafi do skrzynki odbiorczej.Drupal 7 drupal_mail zdejmowanie HTML?
Po pierwsze, w zależności buduję mój tytuł/Ciało/inne Vars i wysyłanie do niestandardowych funkcji:
$body = "We thought you'd like to know that ".$fullname." has marked your project as completed.
<br /><br />
Please visit the link at <a href='http://".$_SERVER['HTTP_HOST']."/survey/customer/".$customer[0]->unique_id."'>http://".$_SERVER['HTTP_HOST']."/survey/customer/".$customer[0]->unique_id."</a> to take the survey.";
$returnMail = latch_send_mail('pro_realized',$customer[0]->customer_email,$user->mail,$title,$body);
Wtedy mam latch_mail funkcji latch_send_email:
function latch_mail($key, &$message, $params) {
$headers = array(
'MIME-Version' => '1.0',
'Content-Type' => 'text/html; charset=UTF-8; format=flowed',
'Content-Transfer-Encoding' => '8Bit',
'X-Mailer' => 'Drupal'
);
foreach ($headers as $key => $value) {
$message['headers'][$key] = $value;
}
$message['body'][] = $params['body'];
$message['subject'] = $params['subject'];
}
i
function latch_send_mail($key,$to,$from,$title,$body,$headers='') {
$params['body']=$body;
$params['subject'] = t($title);
return drupal_mail('latch', $key, $to, language_default(), $params, $from,TRUE);
}
Oczekuję, że e-maile przejdą z moimi tagami i tagami br, ale przychodzi thro W ten sposób:
We thought you'd like to know that John Doe has marked your project as completed. Please visit the link at http://latch.local/survey/customer/34c91b8883cd70b32c65feb7adf9c393 [1] to take the survey. [1] http://latch.local/survey/customer/34c91b8883cd70b32c65feb7adf9c393
Jakoś to bierze moje linki i zmienia je w przypisy przy całkowitym usunięciu tagów br.
Każda pomoc, jaką możesz zapewnić, byłaby doceniana. Dzięki!