i want the confirmation emails send by nms to be html,
but can't find where i can set "Content-Type: text/html;"?
i tried adding
Code: Select all
$mailer->SetContentType('text/html');
$mailer->IsHTML(true);
greets, rtkd
Code: Select all
$mailer->SetContentType('text/html');
$mailer->IsHTML(true);
Code: Select all
$mailer->IsHTML(true);
Code: Select all
$bodytext = $this->ProcessTemplateFromDatabase('subscribe_email_body');
$mailer->SetBody($bodytext);