Hello!
I've got a problem with the $msg in this mail function.
mail($row["email"], $subject, $msg, $mailheaders);
I would like the $msg to contain values from several arrays. How do I do that?
I tried like
$msg = for ($i=0;$i<5;$i++) {
echo x[$i];
echo y[$i];
echo z[$i];
}
But that didn't work...I gues there is some easy way I haven't been able to figure it out thou...
Best regards
/Emil Hansson