Sorry - newbie here.
I have a php script that sends an email. I want the body of the email to be the details that are presented normally when another script is called.
eg: in the script I have the following:
tep_send_mail('$to_name', '$to_address', '$subject, '$body', $from, $from_address);
which is the following:
TO NAME, TO EMAIL ADDRESS, EMAIL SUBJECT, EMAIL CONTENTS, FROM NAME, FROM EMAIL ADDRESS
$body is a script (lets call body.php)
How can I do this?