Skip to main content
All CollectionsGeneral
Web forms constructed with Presence Builder through SMTP
Web forms constructed with Presence Builder through SMTP
Antonio avatar
Written by Antonio
Updated over a year ago

First, it must be verified that the form has been created from Webconstructor/PresenceBuilder. If it has been created from Webconstructor/PresenceBuilder, the /modules/contact route will have been created.
Inside it is the send.php file, in which the following lines must be commented out:
Comment from line 43 to 56:
/*$mail = new Zend_Mail('utf-8');
....
sendResponse(true, $config->reply);*/

Below, we add the following lines:
require './PHPMailer/PHPMailerAutoload.php';
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPDebug = 0;
$mail->Debugoutput = 'txt';
$mail->Host = "localhost";
$mail->Port = 587;
$mail->SMTPAuth = true;
$mail->Username = "[email protected]"; // Email that sends
$mail->Password = "password"; // Password of the email that sends
$mail->SetFrom('[email protected]', 'EDFDRON'); // Indicates the FROM email
$mail->AddReplyTo('[email protected]','EDFDRON'); // Indicates if the message is replied, it goes directly here
$mail->AddAddress('[email protected]'); // Email that will receive the email
$mail->CharSet = 'UTF-8'; // Encoding so that accents, ... work correctly
$mail->Subject = $config->subject; // Subject of the message
$mail->MsgHTML($body); // Body of the message
$mail->Send();

sendResponse(true, "The message has been sent correctly."); // The response to indicate that the email has been sent correctly

Now, we download PHPMailer from Github:
https://github.com/PHPMailer/PHPMailer
Click on Clone or Download, and then on Download ZIP to download it.
Then we upload it inside /modules/contact and unzip it, and rename the PHPMailer-master folder to PHPMailer.

Check the php version that it supports in the file contact / PHPMailer / PHPMailerAutoload.php:

if (version_compare(PHP_VERSION, '5.1.2', '>=')) {
//SPL autoloading was introduced in PHP 5.1.2
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
spl_autoload_register('PHPMailerAutoload', true, true);
} else {
spl_autoload_register('PHPMailerAutoload');
}

If another version is used, it won't work.

With this, it would be enough for it to work correctly.

Did this answer your question?