I would like to show the "friend_name" variable value after the "Hey!" which is $subject.
Should i use ampersand to concatenate.
$cont_arr = array(
"friend_name" => $name,
"friends_count" => $friends_count,
"location" => $location,
);
$subject = "Hey!";
SendMail($email, $my_email, $subject, $cont_arr, "referral_mail");
Thank you very much for the information.