Use case: If you have coded your site using PHP, this is for you. Note that, you need to download the PHP Mailer plugin from https://github.com/PHPMailer/PHPMailer
Sending on Custom application or website/ Custom Contact forms
Error:
The email could not be sent.
Possible reason: your host may have disabled the mail() function.
Recreating Error
Error is obtained when send an email via contact form such as reset password.
Causes of the Errors
Disabled mail() or PHP Mail function on that particular Server.
Why is it Disabled
Most host providers disable mail() function from the server to curb spamming and therefore safeguard server performance and credibility of their emails and general services.
Mail() function allow email sending without authentication so any contact form can be used by anyone (user nobody) to send any amount of mails.
Hosting companies prefer users to use SMTP instead mail
Solutions
Configure SMTP mail Server
For Custom website create a sending page with the following settings
Download and Install / Place PHPMailer in your root directory.
Use the following custom code to send your email.
<?phprequire ‘PHPMailerAutoload.php’; #
$mail = new PHPMailer; //$mail->SMTPDebug = 3; // Enable verbose debug output #
$mail->isSMTP(); // Set mailer to use SMTP #
$mail->Host = ‘mail.example.com;servername.truehost.cloud’; // Specify main and backup SMTP servers #
$mail->SMTPAuth = true; // Enable SMTP authentication #
$mail->Username = ‘[email protected]’; // SMTP username #
$mail->Password = ‘secret’; // SMTP password #
$mail->SMTPSecure = ‘tls’; // Enable TLS encryption, `ssl` also accepted #
$mail->Port = 587; // TCP port to connect to or 25 for non secure #
$mail->setFrom(‘[email protected]’, ‘Mailer’); #
$mail->addAddress(‘[email protected]’, ‘Joe User’); // Add a recipient #
$mail->addAddress(‘[email protected]’); // Name is optional #
$mail->addReplyTo(‘[email protected]’, ‘Information’); #
$mail->addCC(‘[email protected]’); #
$mail->addBCC(‘[email protected]’); #
$mail->addAttachment(‘/var/tmp/file.tar.gz’); // Add attachments #
$mail->addAttachment(‘/tmp/image.jpg’, ‘new.jpg’); // Optional name #
$mail->isHTML(true); // Set email format to HTML #
$mail->Subject = ‘Here is the subject’; #
$mail->Body = ‘This is the HTML message body <b>in bold!</b>’; #
$mail->AltBody = ‘This is the body in plain text for non-HTML mail clients’; #
if(!$mail->send()) { echo ‘Message could not be sent.’; echo ‘Mailer Error: ‘ . #
$mail->ErrorInfo;} else { echo ‘Message has been sent’;} #
Read More https://github.com/PHPMailer/PHPMailer
Where will I input these custom codes