Hallo zusammen,
ich bin dabei bei meiner Seite denn phpmailer einzubinden.
Leider komm ich alleine nicht weiter und so dachte ich ich Frag hier mal rein an was es liegt da PHP nicht meine stärke ist.
Hier mal der Quellcode von html:
und hier noch der php Teil:
Wenn ich das so mache komm ich auf ne leeren Seite wo dann dieses Ausgegeben wird:
"Invalid address: Invalid address: Message was not sent.Mailer error: Message body empty"
class.phpmailer.php, class.smtp.php, class.pop3.php sind auf dem WebServer drauf gepackt.
Freue mich über jede Hilfe und bedanke mich jetzt schonmal.
Liebe Grüße Johan E.
ich bin dabei bei meiner Seite denn phpmailer einzubinden.
Leider komm ich alleine nicht weiter und so dachte ich ich Frag hier mal rein an was es liegt da PHP nicht meine stärke ist.
Hier mal der Quellcode von html:
HTML-Code:
<form action="form-mailer.php" method="post"> <div class="top-row"> <div class="field-wrap"> <label> Dein Name<span class="req">*</span> </label> <input type="text" required autocomplete="off" /> </div> <div class="field-wrap"> <label> Email Address<span class="req">*</span> </label> <input type="email"required autocomplete="off"/> </div> <div class="field-wrap"> <label> Nachricht<span class="req">*</span> </label> <input type="text"required autocomplete="off"/> </div> <input type="checkbox" name="check" value="HTML" required/><h1> Hiermit stimme ich zu<br>das alle Angaben korrekt sind.</h1> <button type="submit" class="button button-block"/>Senden</button> </form>
PHP-Code:
<!DOCTYPE html>
<html>
<head>
<title>test</title>
</head>
<body>
<?php
require 'class.phpmailer.php'; // path to the PHPMailer class
require 'class.smtp.php';
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPDebug = 2;
$mail->Mailer = "smtp";
$mail->Host = "smtp.web.de";
$mail->Port = 587;
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "meinusername@web.de"; // SMTP username
$mail->Password = "mypassword"; // SMTP password
$mail->Priority = 1;
$mail->AddAddress("johanender@web.de","Johan");
$mail->SetFrom($visitor_email, $name);
$mail->AddReplyTo($visitor_email,$name);
$mail->Subject = "Message from Contact form";
$mail->Body = $user_message;
$mail->WordWrap = 50;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
?>
</body>
</html>
"Invalid address: Invalid address: Message was not sent.Mailer error: Message body empty"
class.phpmailer.php, class.smtp.php, class.pop3.php sind auf dem WebServer drauf gepackt.
Freue mich über jede Hilfe und bedanke mich jetzt schonmal.
Liebe Grüße Johan E.
Kommentar