Jump to content

mail() problems with MSN/Hotmail


perezf

Recommended Posts

It works to gmail accounts but not to msn and hotmail :'(
[code]<?php
if(isset($_POST['Submit'])){
$To = $_POST['from'];
$Subject = "Thank You For Subscribing";
$Message = "Thank you for Subscribing, ".$_POST['from'];
$Headers = "From: Frank Perez <[email protected]>";
mail($To, $Subject, $Message, $Headers);

$Too = "[email protected]";
$Subjecto = "New Subscription";
$Messageo = "This user has just subscribed, ".$_POST['from'];
$Headerso = "From: New Subscriber <$To>";
mail($Too, $Subjecto, $Messageo, $Headerso);
} else { ?>


<form name="form1" method="post" action="">
  <input name="from" type="text" id="from">
  <input type="submit" name="Submit" value="Submit">
</form>
<?php } ?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/20524-mail-problems-with-msnhotmail/
Share on other sites

I don't know what else to say then.  Also keep in mind that hotmail and msn have delays.  You may not get mail right away with them.

Also, I've told you this before... please use more descriptive titles for your threads.  If you do it again I will suspend your account for a few days.

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.