I have a mailer class that I have made use of. I'm going to use it to send HTML messages. However, the HTML code is fairly lengthy and I'd rather not include it in the PHP code sample below. How can I code it so that I store my HTML formatted email message in a separate file (email.php for example) and then "include" it or "insert" it into the appropriate body variable below? For example sake I have just put simple html code in that spot below.
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->From = "$Email";
$mail->FromName = "$FirstName $LastName";
$mail->AddAddress("user@foo.com", "Name");
$mail->AddCC("$Email", "$FirstName $LastName");
$mail->WordWrap = 50;
$mail->IsHTML(true);
$mail->Subject = "Subject Goes Here";
$mail->Body = "<b>Hello World</b>";