Hallo,
ich habe ein Problem mit dem PHPMailer..
Wenn ich einen Link per Enail senden will, muss ich immer die gesammte URL kopieren und im Browser einfügen.
Das will ich nicht !
Ich möchte einen href einfügen, doch wenn ich das mache, wird mir immer ein Fehler angezeigt.
Kann man mir helfen?
PHP
require_once "class.phpmailer.php";
include "class.smtp.php" ;
$new_mail_send = new PHPMailer();
$body = "Hallo $uname,
blabla
Bitte bestätige dies mit dem klick auf den folgenden Link:
"<a href=127.0.0.1/Scripts/Login/mail_checked.php?uid='$uid'&uname='$uname'>Link</a>"
blabla ";
$new_mail_send->CharSet = "utf-8";
$new_mail_send->IsSMTP(); // telling the class to use SMTP
$new_mail_send->Host = "smtp.~"; // SMTP server
$new_mail_send->SMTPDebug = 0; // enables SMTP debug information (for testing)
$new_mail_send->SMTPAuth = true; // enable SMTP authentication
$new_mail_send->Username = " "; // SMTP account username
$new_mail_send->Password = " "; // SMTP account password
$new_mail_send->SetFrom(" ");
$new_mail_send->Subject = "Testmail";
$new_mail_send->Body=$body;
$new_mail_send->AddAddress($new_mail);
if(!$new_mail_send->Send()) {
echo "Mailer Error: " . $new_mail_send->ErrorInfo;
} else {
echo "Nachricht gesendet!";
}
Alles anzeigen