I'm pretty new to PHP. I need to send an email from a webpage and thought that my code was good, but it's not sending anything. I can't see what i am doing wrong...
<?php
echo ("Thank you.")
$msg = "Some email message for testing. Please disregard if you receive this in your email.";
$msg = wordwrap($msg,70);
mail("email1@internet.com","Subject Verbiage",$msg);
mail("email2@internet.com","Subject Verbiage",$msg);
?>
Any help would be very appreciated.