phpmailer passwort reset

This commit is contained in:
Peter Hoppe
2023-02-08 16:09:00 +01:00
parent 9821f20dee
commit 0c5cfcbd19
15 changed files with 247 additions and 56 deletions

View File

@ -1,20 +1,4 @@
<?php
class CNetcupMailer extends PHPMailer
{
public function __construct($debug = false)
{
parent::__construct($debug);
$this->SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output
$this->isSMTP(); //Send using SMTP
$this->Host = 'mxe8bd.netcup.net'; //Set the SMTP server to send through
$this->SMTPAuth = true; //Enable SMTP authentication
$this->Username = 'dog@hope-fly.de'; //SMTP username
$this->Password = 'DgQduKV6uBWXQcCqmAjL'; //SMTP password
$this->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption
$this->Port = 465; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
}
}
class CMsg
{
var $success;