Page 1 of 1

[SOLVED][NMS] - Content-Type for confirmation email?

Posted: Wed Dec 05, 2007 12:14 pm
by rtkd
hi,

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);
to action.confirm_email.php but didnt help.

greets, rtkd

[SOLVED] [NMS] - Content-Type for confirmation email?

Posted: Wed Dec 05, 2007 12:52 pm
by rtkd
[SOLVED]

add

Code: Select all

$mailer->IsHTML(true);
to file

nms/action.do_create_new_user.php after

Code: Select all

$bodytext = $this->ProcessTemplateFromDatabase('subscribe_email_body');
$mailer->SetBody($bodytext);
(approx. line 167)

greets, rtkd