SMF Support > SMF 2.0.x Support
Problem with certain email address's
Shadowing:
Hey guys im having a issue. I think the problem is my mail server though but I want to just double confirm by asking a question here.
I notice i cant send a email to a .de or a email like address@vmobl.com
so i inserted this email address into my account at phpfreaks.com which uses SMF forum also and it worked. So they can send to that email but I cant. Which narrows it down to being a problem with my mail server unless the people at php freaks did a edit with SMF software.
so my question is Can i rule this out of being a SFM issue. cause i also cant send eamils using the php function mail() to certain emails.
i can send email to all major emails hotmail,yahoo,gmail etc...
Orangine:
--- Quote ---cause i also cant send eamils using the php function mail() to certain emails.
--- End quote ---
SMF uses mail()
Arantor:
SMF uses mail() by default but can also use SMTP if you give it the details.
Shadowing:
so my problem is probably my mail server then lol. I'm using POSTFIX for my mail server
Do you think it would matter if mail@stargatesystemlords.com cant be replied back too? or something
--- Code: --- $to = "address@vmobl.com";
$from = "mail@stargatesystemlords.com";
$subject = "Stargate System Lords";
$message = "Your alerts are now set up for Stargate System Lords";
$headers = '';
$headers .= "Content-type: text/html\r\n";
$headers .= "From: Stargate System Lords <$from>\n";
$headers .= "Reply-to: $from\n";
$headers .= "Return-Path: $from\n";
$headers .= "Message-ID: <" . md5(uniqid(time())) . "@" . $_SERVER['SERVER_NAME'] . ">\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Date: " . date('r', time()) . "\n";
mail($to, $subject, $message, $headers);
--- End code ---
Arantor:
Do *any* messages get sent via SMF?
Navigation
[0] Message Index
[#] Next page
Go to full version