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 = '[email protected]';$subject = 'You Have A New COmment';$mailcontent = 'First Name: '.$firstname. "\n" .'Last Name: '.$lastname. "\n" .'Email: '.$email. "\n".'Comments: '.$comment. "\n";$fromaddress = 'From: [email protected]';mail($toaddress, $subject, $mailcontent, $fromaddress);?>if anyone could help me incorporate my ISP smtp here I would greatly appreciate your help. Thank You. Link to comment https://forums.phpfreaks.com/topic/5875-sending-my-form-using-my-isp-smtp/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.