Page 1 of 1

PostPosted: Mon Apr 23, 2007 6:10 am
by cbovio
hello,

i would like to use templates to send emails from delegates class.

is here any function like df_display but without stdout ?

thanks,

PostPosted: Mon Apr 23, 2007 8:43 am
by shannah

Use output buffering:

ob_start();
df_display(...);
$email_contents = ob_get_contents();
ob_end_clean();

Check out http://php.net/ob_start for more info about output buffering.

Best regards

Steve