Jump to content

Sending my form using my ISP SMTP


crazylegseddie

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.