<?php
use phpformbuilder\Form;
use phpformbuilder\Validator\Validator;
/* =============================================
start session and include form class
============================================= */
session_start();
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
/* =============================================
validation if posted
============================================= */
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('email-templates') === true) {
// create validator & auto-validate required fields
$validator = Form::validate('email-templates');
// additional validation
$validator->email()->validate('user-email');
// hcaptcha validation
$validator->hcaptcha('YOUR_HCAPTCHA_SECRET_KEY', 'Captcha Error')->validate('h-captcha-response');
// check for errors
if ($validator->hasErrors()) {
$_SESSION['errors']['email-templates'] = $validator->getAllErrors();
} else {
$replacements = array();
if ($_POST['email-template'] !== 'custom') {
// send default email
$email_config = array(
'sender_email' => '[email protected]',
'sender_name' => 'Php Form Builder',
'recipient_email' => addslashes($_POST['user-email']),
'subject' => 'Contact From Php Form Builder',
'filter_values' => 'email-templates',
'debug' => true
);
$sent_message = Form::sendMail($email_config);
}
if ($_POST['email-template'] !== 'default') {
// email HTML template placeholders replacements
$replacements = array(
'tpl-header-image' => 'https://www.phpformbuilder.pro/assets/images/phpformbuilder-preview-600-160.png',
'tpl-content-dark-background' => '#363331',
'tpl-content-light-background' => '#FAF6F2',
'user-full-name' => $_POST['user-first-name'] . ' ' . $_POST['user-name']
);
$email_config = array(
'sender_email' => '[email protected]',
'sender_name' => 'Php Form Builder',
'recipient_email' => addslashes($_POST['user-email']),
'subject' => 'Contact From Php Form Builder',
'filter_values' => 'email-templates',
'template' => 'custom.html',
'custom_replacements' => $replacements,
'debug' => true
);
$sent_message = Form::sendMail($email_config);
}
// reset the form
Form::clear('email-templates');
}
}
/* ==================================================
The Form
================================================== */
$form = new Form('email-templates', 'vertical', 'novalidate', 'bs4');
$form->setMode('development');
$form->startFieldset('Please fill in this form to contact us', '', 'class=text-center mb-4');
$form->addHtml('<p class="text-warning text-right">All fields are required</p>');
$form->addInput('text', 'user-name', '', 'Name:', 'required');
$form->addInput('text', 'user-first-name', '', 'First name:', 'required');
$form->addInput('email', 'user-email', '', 'Email:', 'required');
$form->addTextarea('message', '', 'Message:', 'rows=7, required');
$form->addRadio('email-template', 'Send me an email built with the <strong><em>default template</em></strong>', 'default');
$form->addRadio('email-template', 'Send me an email built with a <strong><em>custom template</em></strong>', 'custom');
$form->addRadio('email-template', 'Send me <strong>both</strong> the <em>default</em> & the <em>custom</em> emails', 'both');
$helper_message = '<div class="mt-4 mb-5"><p>The <strong><em>default template</em></strong> generates a table with the posted keys/values. This table is automatically inserted into the email body.<br>The default template file is <em>phpformbuilder/mailer/email-templates/default.html</em></p><p>The <strong><em>custom template</em></strong> uses <em>placeholders</em> which are automatically replaced by the posted values.<br>For example <em>{user-name}</em> will be replaced in the email body by the posted user-name value. See <em>phpformbuilder/mailer/email-templates/custom.html</em></p></div>';
$form->addHelper($helper_message, 'email-template');
$form->printRadioGroup('email-template', '', false, 'required');
$form->centerContent();
$form->addHcaptcha('YOUR_HCAPTCHA_SITE_KEY', 'class=text-center');
$form->addBtn('reset', 'reset-btn', 1, 'Reset <i class="fas fa-ban ml-2" aria-hidden="true"></i>', 'class=btn btn-warning', 'my-btn-group');
$form->addBtn('submit', 'submit-btn', 1, 'Send <i class="fas fa-envelope ml-2" aria-hidden="true"></i>', 'class=btn btn-primary, data-ladda-button=true, data-style=zoom-in', 'my-btn-group');
$form->printBtnGroup('my-btn-group');
$form->endFieldset();
// pretty-checkbox plugin
$options = [
'icon' => 'fas fa-check',
'plain' => 'plain',
'animations' => 'smooth'
];
$form->addPlugin('pretty-checkbox', '#email-templates', 'default', $options);
// Javascript validation
$form->addPlugin('formvalidation', '#email-templates');
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Bootstrap 4 Form - Sending emails with PHP Form Builder - How to create PHP forms easily</title>
<meta name="description" content="Bootstrap 4 Form Generator - how to send emails with Php Form Builder">
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/bootstrap-4-forms/email-templates.php" />
<!-- Bootstrap 4 CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<!-- Font awesome icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/solid.css" integrity="sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/fontawesome.css" integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<?php $form->printIncludes('css'); ?>
</head>
<body>
<h1 class="text-center">Php Form Builder - Bootstrap 4 Form<br><small>sending emails using HTML/CSS email templates</small></h1>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-11 col-lg-10">
<div class="text-center mb-5">
<a href="https://www.phpformbuilder.pro/documentation/class-doc.php#sendMail" class="btn btn-secondary btn-sm"><strong>Email sending</strong> - documentation here <i class="fas fa-arrow-right ml-2"></i></a>
</div>
<?php
if (isset($sent_message)) {
echo $sent_message;
}
$form->render();
?>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Bootstrap 4 JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
<?php
$form->printIncludes('js');
$form->printJsCode();
?>
</body>
</html>