Hi,
habe sendmail auf unserem Server installiert (SuSE 9.2) wenn ich jetzt Sendmail starte mit :
Meldet er mir das er erfolgriech verschickt hat aber bei mir kommt nichts an?
Der Eintrag für pfad habe ich in der oho.ini einkommentiert, kann mir da jemand helfen?
habe sendmail auf unserem Server installiert (SuSE 9.2) wenn ich jetzt Sendmail starte mit :
PHP-Code:
<?php
error_reporting(E_ALL);
session_start();
$navigation = '';
$content = '';
include '../includes/config.php';
connect();
if(!logged_in() AND !in_array("Newsletter", $_SESSION['RECHT']))
{
print_noright();
}
$to = "test@gmx.de";
$subject = "Test E-Mail";
$msg = "I completely understand SMTP servers now!";
$headers = "From: [email]me@mycompany.com[/email]\nReply-To:
[email]someoneelse@mycompany.com[/email]";
$config = "-fwebmaster@mycompany.com, charset=unicode";
mail("$to", "$subject", "$msg", "$headers", "$config");
echo "finished!";
get_template($content, $navigation);
?>
Der Eintrag für pfad habe ich in der oho.ini einkommentiert, kann mir da jemand helfen?
Kommentar