count: 0
Monday December 11 2023
The new Form2Mail aims to be far more user friendly than previous projects.
An example is how To:, From:, Cc:, and Bcc: are entered. Using To: as an example, most scripts would require you to enter that as:
$mail->RecipientName = 'John Doe';
$mail->RecipientEmail = 'john.doe@domain.com';
In...
Read full article
count: 0
Monday December 11 2023
The Form2Mail v2 Plugin supports three entry/exit points:
Pre-Send Plugin
Auto Responder Plugin
Post-Send Plugin
All three have access to the same information:
process after fields are checked for required status (Form2Mail does not proceed if any required field is missing)
process after...
Read full article
count: 0
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 article
count: 0
Friday December 8 2023
A few days ago I wrote an article and posted code to parse email address lists from an unstructured array into a structured array. You can read it here.
There is also the possibility of parsing an email address list from an "unstructured" string. Here's how to handle that.
Here's what the original...
Read full article
count: 0
Monday December 4 2023
Much of my programming involves dealing with email transportation from mailing lists or lists generated by clients from databases.
That presents a problem. The lists are unusually unstructured meaning that each email address could be in almost any format – including strings and arrays.
Here's an...
Read full article
count: 0
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 article
count: 0
Friday December 1 2023
Concerned about ads? being tracked as your surf the net? Read on....
For browsers, Chrome is the market leader with over 63% market share. Safari is next closest with almost 20%. The rest are all individually below 6%. That surprised me a bit, I always thought Firefox would be a market leader, but...
Read full article
count: 0
Friday December 1 2023
I had a CT scan in October 2023 along with lab tests. Both showed unexpected results.
The CT scan shows "atrophy" pancreas. The report uses the words "end-stage chronic pancreatitis". At the doctor's appointment, he described it as no longer functional. I don't quite believe that, so the words I...
Read full article
count: 0
Saturday November 18 2023
Although not 100% secure, my .htaccess file includes blocking all website traffic from Russia. I did that with the following (added to .htaccess file on the website):
# Country: RUSSIAN FEDERATION
# ISO Code: RU
# Total Networks: 5,644
# Total Subnets: 41,289,032
deny from 2.57.0.0/16
deny from...
Read full article
count: 0
Friday August 25 2023

Let's handle the most obvious question first: Why minify CSS or JS?
There are two reasons. The first is to reduce the size of data being transferred across the internet. Removing comments and spacing can reduce these by as much as 40% of their original size. The second is to condense the space ......
Read full article