Code: Select all
ob_start();
include "urlexample.htm";
$newsletter_html = ob_get_contents();
ob_end_clean();
I have inserted a link via this method and the link itself will show up in the email, but if I try to include the html, it won't. So, I know that the ob_ processes are functioning correctly.
I've checked my "output_buffering" setting in my php.ini file and it is turned on.
Any thoughts?