I need to verify:
(working on the HTML section of a mailer)
If in my php.ini: allow_url_fopen is On
Will file_get_contents(file URL)
called as follow
$mailer->Body = str_replace('{MEMBER_NAME}', $member_name, file_get_content($htmlBody) );
allows the file to become my email body? where $htmlBody comes from the DB
I pass on the details :)