Hi PHP coders,
I have this below but do not know what to place in this section to get an
entire dynamic page to be sent to any email similar to send to a friend:
$mail->Body= '';

=================================================
<?php
require('class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = 'localhost';
$mail->From = 'email@domain.com';
$mail->FromName = 'Name';
$mail->AddBCC (email@domain.com, Name);
$mail->AddReplyTo('email@domain.com', 'Name');// optional name
$mail->WordWrap = 50; // set word wrap to 50 characters
//$mail->AddAttachment('Student 2 Student_LOGO.jpg'); // optional name
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = 'Some subject';
$mail->Body = '';
$mail->AltBody = '';
if(!$mail->Send())
{
echo 'Message could not be sent. <p>';
echo 'Mailer Error: ' . $mail->ErrorInfo;
exit;
}
echo 'Message has been sent';
?>
============================================

Any help would be great!

Cheers
West