Hallo,
ich versende bei einem meiner Projekte via phpmailer eine Email und möchte nicht, dass die Absenderadresse im Posteingang angezeigt wird, sondern wie ei den meisten Newslettern die Firma bzw. Organisation.
Kann mir wer helfen, das zu ändern?
Mailcode:
PHP
<?phpecho "Postfach wird gespammt...";$mail = $_POST["adress"];$time = $_POST["time"];require_once "class.phpmailer.php";include "class.smtp.php" ; $new_mail = new PHPMailer();$body = "Der Mailspammer sendet erfolgreich die Mails los. ";//$new_mail_to = $mail;$new_mail->CharSet = "utf-8";$new_mail->IsSMTP(); // telling the class to use SMTP$new_mail->Host = "smtp.web.de"; // SMTP server$new_mail->SMTPDebug = 1; // enables SMTP debug information (for testing)$new_mail->SMTPAuth = true; // enable SMTP authentication$new_mail->Username = "~"; // SMTP account username$new_mail->Password = "~"; // SMTP account password$new_mail->SetFrom("absender@web.de");$new_mail->Subject = "Ihe brandneuer Spam ist da !";$new_mail->Body=$body;$new_mail->AddAddress($mail);if(!$new_mail->Send()) { echo "Mailer Error: " . $new_mail->ErrorInfo;} else { echo "Nachricht gesendet!";}?>
MfG
hundi
P.S. Für Leute, die nicht wissen, was ich meine-->Screen im anhang