I am trying to add several variables to this email script. The email itself sends every time, and is received. However, the email contains the variable itself and not the information. How can I get the variables to print the data they represent? (I know the variable exists.)
<?//Send Welcome Email
$to = '//Email Removed for security';
$subject = 'Application Received';
$msg = '
We have received your application. You can login at
anytime by visiting:<br />
<a href=\"$siteURL/return-Login.php" title="$siteName - Return Login\">$siteURL/return-Login.php</a><br /><br />
';
sendEmail($to,$subject,$msg,$siteName,$siteEmail,$siteURL,$account,$ip);
?>