Jump to content

Formmail ini_set


ultratek

Recommended Posts

yes...thankyou...

 

i tried the address the ini_get came back with

and i get this:

PHP Warning: mail() [function.mail]: SMTP server response: 501 Incorrect Address Format in C:\Websites\efficaciousplanet368\justinvenablephoto.com\handle_form.php on line 27

 

here is the code:

<?php
ini_set("SMTP","smtp1.easycgi.com");
$name = $_POST['name'];
$phone = $_POST['email'];
$email = $_POST['phone'];
$subject = $_POST['subject'];
$comments = $_POST['comments'];

$name = $name; //senders name
$email = $email; //senders e-mail adress
$recipient = "[email protected]"; //recipient
//$recipient = "[email protected]"; //recipient
//$recipient = "[email protected]"; //recipient

$comments = "$comments...\n\n".$phone;
$subject = $subject; //subject
$header = "From: ". $name . " <" . $email . ">\r\n"; //optional headerfields

mail($recipient, $subject, $comments, $header); //mail command 


?>

Link to comment
https://forums.phpfreaks.com/topic/126451-formmail-ini_set/#findComment-653951
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.