I am using a PHP include function to add content to an email sent out. Problem is I don't want to echo the file too, I only want to include it as the $message.
Whats the equivalent of include that returns the string without the echo.
$message = include('email/head.php');