21
Landet zwar direkt im Spamordner, aber kommt an.
<?php
//include des PHPMailer
require 'PHPMailer-master/PHPMailerAutoload.php';
$mail = new PHPMailer;
?>
<?php
//Zugangsdaten SMTP
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'mxf912.netcup.net'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'zensiert'; // SMTP username
$mail->Password = 'zensiert'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
?>