php mailer and html includes with php variables
Hello I am trying to send html emails using php mailer class. The problem is i would like to incllude php variables in my email while using includes as to keep things organized. Heres my php mailer.... $place = $data['place']; $start_time = $data['start_time']; $mail->IsHTML(true); // set email format to HTML $mail->Subject = "You have an event today"; $mail->Body = file_get_contents('../emails/event.html'); $mail->Send(); // send message my question is, is it possible to have php variables in event.html ? i tried this with no luck (below is event.html).. <table width='600px' cellpadding='0'