Nicht mehr ganz neu hier
Hallo
verwende den PHP Mailer, der auch soweit funktioniert. Aber was nicht funktioniert ist, das keine Bestätigungsseite aufgerufen wird, obwohl ich diese im Quelltext angegeben habe.
Formular kommt per Email an, aber wie gesagt beim Anklicken des Absende-Button bleibt die Seite..Es kommt gar nix.
----
<?php
// $email and $message are the data that is being
// posted to this page from our html contact form
$email = $_POST['email'] ;
$name = $_POST['name'] ;
$subject = $_POST['subject'] ;
$message = $_POST['message'] ;
// When we unzipped PHPMailer, it unzipped to
// public_html/PHPMailer_5.2.0
require("phpmailer/PHPMailerAutoload.php");
$mail = new PHPMailer();
$mail->CharSet = 'utf-8';
$mail->SetLanguage ("de");
// set mailer to use SMTP
$mail->IsSMTP();
// As this email.php script lives on the same server as our email server
// we are setting the HOST to localhost
$mail->Host = "localhost"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "xx@gmail.com"; // SMTP username
$mail->Password = "xx"; // SMTP password
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
//Absenderadresse der Email setzen
$mail->From = "xxx@gmail.com";
//Name des Abenders setzen
$mail->FromName = "xx";
//Betreff der Email setzen
$mail->Subject = "Ihre Konfiguration bei xxx";
//Text der EMail setzen
$mail->Body = "<img src=\"http://xxx\"><br><br>Vielen Dank. Sie haben folgende Konfiguration für ihr neues System getroffen:<br><br>
\t<strong>Name:</strong> $name<br>
\t<strong>subject:</strong> $subject<br>
\t<strong>Anzahl der benötigten Systeme:</strong> $anzahl<br>
\t<strong>Testausdruck:</strong> $testausdruck<br>
\t<strong>Funktionen:</strong> $funktionen<br>
\t<strong>Druckvolumen:</strong> $druckvolumen<br>
\t<strong>Seitenformat:</strong> $seitenformat<br>
\t<strong>Farbe:</strong> $farbe<br>
\t<strong>Endverarbeitung:</strong> $Endverarbeitung<br>
\t<strong>Service:</strong> $service<br>
\t<strong>Gutschein:</strong> $gutschein<br>
\t<strong>Name:</strong> $name<br>
\t<strong>Ansprechpartner:</strong> $ansprechpartner<br>
\t<strong>Toner,Technikerflatrate:</strong> $flatrate<br>
\t<strong>Email:</strong> $email</br></br>
\t<strong>Nachricht:</strong> $nachricht<br><br><br>";
// below we want to set the email address we will be sending our email to.
$mail->AddAddress("xx@xxx", "xxx ");
$mail->AddAddress("$email");
// set word wrap to 50 characters
$mail->WordWrap = 50;
// set email format to HTML
$mail->IsHTML(true);
if(!$mail->Send())
{
$strReturnhtml = '
exit;
}
echo "Message has been sent";
print_r( $_POST );
?>
verwende den PHP Mailer, der auch soweit funktioniert. Aber was nicht funktioniert ist, das keine Bestätigungsseite aufgerufen wird, obwohl ich diese im Quelltext angegeben habe.
Formular kommt per Email an, aber wie gesagt beim Anklicken des Absende-Button bleibt die Seite..Es kommt gar nix.
----
<?php
// $email and $message are the data that is being
// posted to this page from our html contact form
$email = $_POST['email'] ;
$name = $_POST['name'] ;
$subject = $_POST['subject'] ;
$message = $_POST['message'] ;
// When we unzipped PHPMailer, it unzipped to
// public_html/PHPMailer_5.2.0
require("phpmailer/PHPMailerAutoload.php");
$mail = new PHPMailer();
$mail->CharSet = 'utf-8';
$mail->SetLanguage ("de");
// set mailer to use SMTP
$mail->IsSMTP();
// As this email.php script lives on the same server as our email server
// we are setting the HOST to localhost
$mail->Host = "localhost"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "xx@gmail.com"; // SMTP username
$mail->Password = "xx"; // SMTP password
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = 'smtp.gmail.com';
$mail->Port = 465;
//Absenderadresse der Email setzen
$mail->From = "xxx@gmail.com";
//Name des Abenders setzen
$mail->FromName = "xx";
//Betreff der Email setzen
$mail->Subject = "Ihre Konfiguration bei xxx";
//Text der EMail setzen
$mail->Body = "<img src=\"http://xxx\"><br><br>Vielen Dank. Sie haben folgende Konfiguration für ihr neues System getroffen:<br><br>
\t<strong>Name:</strong> $name<br>
\t<strong>subject:</strong> $subject<br>
\t<strong>Anzahl der benötigten Systeme:</strong> $anzahl<br>
\t<strong>Testausdruck:</strong> $testausdruck<br>
\t<strong>Funktionen:</strong> $funktionen<br>
\t<strong>Druckvolumen:</strong> $druckvolumen<br>
\t<strong>Seitenformat:</strong> $seitenformat<br>
\t<strong>Farbe:</strong> $farbe<br>
\t<strong>Endverarbeitung:</strong> $Endverarbeitung<br>
\t<strong>Service:</strong> $service<br>
\t<strong>Gutschein:</strong> $gutschein<br>
\t<strong>Name:</strong> $name<br>
\t<strong>Ansprechpartner:</strong> $ansprechpartner<br>
\t<strong>Toner,Technikerflatrate:</strong> $flatrate<br>
\t<strong>Email:</strong> $email</br></br>
\t<strong>Nachricht:</strong> $nachricht<br><br><br>";
// below we want to set the email address we will be sending our email to.
$mail->AddAddress("xx@xxx", "xxx ");
$mail->AddAddress("$email");
// set word wrap to 50 characters
$mail->WordWrap = 50;
// set email format to HTML
$mail->IsHTML(true);
if(!$mail->Send())
{
$strReturnhtml = '
exit;
}
echo "Message has been sent";
print_r( $_POST );
?>