PHPMailer-FE Changelog

A general note:
  PHPMailer-FE is back to original name, with all new object-oriented
    class, 100% all new code.
  PHPMailer-BMH is entirely new
  PHPMailer.Pro is renamed from PHPMailer2
  FormValidator is now i18n multi-language compliant

v7.2.0 26 December 2023
- major changes, first rename back to the original PHPMailer-FE
  and will showcase PHPMailer Pro and STMPMailer (if found),
  else will use Sendmail (if found), else will use Mail().
A complete re-write changing from procedural PHP to object-oriented
class. Although close, the class is NOT code compatible with
previous versions ... requires minor modifications.
This new version introduces "plugins" architecture after the form has
been processed. That means emails validated, require fields
validated, input data sanitized ... ready to send. The plugin
architecture is in two areas:
-- before sending the email
-- after sending the eemail
Other changes:
- updated language english and files (french, spanish)
- adding email address is more user friendly ... they can be added in
  any format including string or array (including multi-dimensional)
All other functionality (attachments, embedded graphics, etc.) are
the same.
Note that this class requires a change in namespace for all
codeworxtech classes due to a calling conflict - and calls to
other codeworxtech classes forces the need for a starting backslash
in the namespace call, as in: \codeworxtech\PHPMailer Lite (to prevent
contiguous calls
  (as in codeworxtech\PHPMailerFE\codeworxtech\PHPMailer Lite)

v7.1.1 01 December 2023
- removed left-over developer artifacts (echo statement)
  did not affect functionality, but distracting
- modified functions to process/parse email addresses
  (patterned after PHP built in command, but with more abilities)
- modified email headers
  - notable additions to aid in proof of delivery and tracing
    added X-Sender-Date (date/time/timezone)
    added X-Originating-IP (sender IP address)
- added support for sendmail
  - order now is PHPMailer Lite, PHPMailer2, sendmail, PHP mail()
  - highly unlikely that process ever ends up at PHP mail()

v7.1.0 30 November 2023, first production ready code
- refactored code to create text and HTML versions
- extensively tested in various production environments

v7rc5 - 21 March 2022, fix release
- error in loading MailSend/PHPMailer2 fixed

v7rc4 - 20 March 2022, initial release