Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
337 views
in Q2A Core by
Q2A version: 1.8

1 Answer

+2 votes
by

/app/mailing.php

// q2apro hack for html emails 
// 'body' => trim(qa_opt('mailing_body')) . "\n\n\n" . qa_lang('users/unsubscribe') . ' ' . $unsubscribeurl,
// 'html' => false,
'body' => nl2br( trim(qa_opt('mailing_body'))."\n\n\n" ).' <span style="font-size:12px;color:#888">'.qa_lang('users/unsubscribe').' <a style="color:#888" href="'.$unsubscribeurl.'">Unsubscribe</a></span>',
'html' => true,
by
+1
Thanks that was very easy...Then why default Q2A is not using it ?
...