I have been an "Open Source" contributor for several decades. Previous projects have included PHPMailer, PHPMailer-FE, PHPMailer-ML, DCP-Portal, ttCMS, QuickCSV, QuickCache, QuickSkin, OPcache, SmartTemplate, FormValidator, and a few others. Health issues forced a retirement in 2012 ...
I returned to maintaining and creating Open Source projects in 2020. The projects I am working on include PHPMailer Pro, SMTPMailer, PHPMailer-BMH (Bounce Mail Handler), PHPMailer-FE (Form to Email), and FormValidator.
Sunday December 10 2023
Spoiler alert. Here's what the form setup to process with the Form2Mail class looks like:
if (count($_POST) > 0) {
include_once('assets/mailer/class.Form2Mail.php');
if ( class_exists('codeworxtech\Form2Mail')) {
$f2m = new codeworxtech\Form2Mail();
$f2m->useEnvRpt = true;...
Read full post
Sunday December 10 2023
I fell ill in 2011/2012. Another developer took over the PHPMailer project and I am quite thankful for that assistance. PHP is not very friendly to email transportation and we all need email transportation software to help.
Most websites are hosted on a server where Sendmail (or Qmail) is the...
Read full post