Avatar

Version 2.4.17 - registration not possible (General)

by Auge ⌂, Thursday, January 10, 2019, 07:54 (1932 days ago) @ Magma

Hello

My colleague emailed me to say he changed the main cpanel password. Would that mess up the automated emails going out?

You are you talking about the cPanel web hosting admin tool? If yes, then no. The change of the password for this tool should not cause the failed sending of e-mails in the forum.

Are you able to send an e-mail with the PHP mail-function at all with the following script?

<?php
 
$subject  = "Pipapo";
$content  = "This e-mail if for testing.";
$sender   = ""; // add the e-mail-address of the sender
$receiver = ""; // add the e-mail-address of the receiver
$headers  = "From: " . $sender . "\r\n";
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n";
 
$returnValue = mail($receiver, $subject, $content);
 
if ($returnValue === false) {
 echo "E-mail could not be passed to the mail server program.";
} else {
 echo "E-mail was passed to the mail server program.";
}
 
?>

Tschö, Auge

--
Trenne niemals Müll, denn er hat nur eine Silbe!


Complete thread:

 RSS Feed of thread