crazylegseddie Posted March 26, 2006 Share Posted March 26, 2006 im sure this is a novice problem and ive found it hard to find similar sources that integrate with my form. All i want to do is link my form to send to my specified email using my ISP smtp. Here is my code: <?php$firstname=$_POST['FirstName'];$lastname=$_POST['LastName'];$email=$_POST['Email'];$comment=$_POST['Comment'];$toaddress = 'myemail@hotmail.com';$subject = 'You Have A New COmment';$mailcontent = 'First Name: '.$firstname. "\n" .'Last Name: '.$lastname. "\n" .'Email: '.$email. "\n".'Comments: '.$comment. "\n";$fromaddress = 'From: sales@mydomain.com';mail($toaddress, $subject, $mailcontent, $fromaddress);?>if anyone could help me incorporate my ISP smtp here I would greatly appreciate your help. Thank You. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.