PHP SMTP i mail
Har prøvet at sikre min mailprogrammering:require_once('class.phpmailer.php');
include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.webhosting.dk"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
$mail->Debugoutput= 'HTML'; // 2 = messages only
--->$mail ->SMTPSecure = 'SSL';
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Host = "smtp.webhosting.dk"; // sets the SMTP server
$mail->Port = 2525; // set the SMTP port for the GMAIL
osv.....
Bruger jeg $mail ->SMTPSecure = 'SSL'; får jeg en fejlmeddelelse i browseren En bestemt linje i smtp.webhosting.dk- uden SSL-koden er der ingen vrøvl.
Er porten forkert, når det er SSL?
Dur det ikke når hjemmesiden i forvejen er sikkerhedscertificeret? (den gratis version)