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. PS. The form is not hosted using my ISP. Here is the 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. Ive also tried PHPMailer and unable to get that to work :( Thank You for your time.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.