SMTPMailer Changelog

v1.1.0 - 26 December 2023
- namespace has changed from codeworxtech to codeworxtech\PHPMailer Lite
  due to conflict with calls from other classes
- 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)
- corrected validation error when using SMTP from subdomain
- added mimeMail as public method to facilitiate accessing entire
  message for post processing (ie. using with imap_append)
  note: available after send operation

v1.0.0 - 27 November 2023, first production ready release
- refinements, fixes
  - fixed missing $SMTP_Debug, rc releases incorrectly had $Debug
    both now supported
  - fixed code to support Return-Path

v1rc1 - 25 June 2022
* NOTE MAJOR CHANGE: RENAMED PROJECT FROM MailSend to PHPMailer Lite
- removed Debug feedback mechanism and replaced with proper custom
  Error Handling
- changed the path traversal exploit code so that it would allow for
  single period and double period as valid paths. Now checks that
  path traversal does not go past the document root.
- changed exploits functions: decode prior to evaluations
- changed exploits functions: "normalize" slashes to server default
- added 'rootPath' used in path traversal and allows for
  user modification (for example, to go up one level from root)

v0.9.2b - 24 April 2022, enhancements/fixes
- added method $mail->useSMTP(); to control sending by SMTP
  - default is true (uses SMTP as transport)
  - $mail->useSMTP(false); (uses Sendmail, bypasses SMTP transport)
- added support for iCalendar (ICS) format files with full RSVP
  button capabilities
- change in encoding (removed method EncodeUTF8b and replaced
  with MS_Mb_Encode)
- change in encoding Subject with line wraps for longer lines
- added boolean check for multibyte strings before applying
  multibyte encoding
- added check for valid smtp server (if passed via mail->SMTP_Host)
- restructured mail body boundaries
- allow messages with/without MessageText and/or with/without
  MessageHTML
- added support for multiple inline (embedded) graphics

v0.9.1b - 21 March 2022, fixes
- change in Content-Type
- added missing Custom Header code

v0.9b - 20 March 2022, initial public release