We use github actions to do automatic semantic versioning, so please use the following nomenclature for the commit message according to the type of change:
Prefix with feat:, and it will trigger a minor version bump.
Prefix with fix:, and it will trigger a patch version bump.
Prefix with BREAKING CHANGE:, and it will trigger a major version bump.
Description of the change
Resolves issue #68 This simply allows you to pass LOG_SUBJECT=yes as an environment variable in order to enable outputting the subject line in the logs.
Motivation and Context
I like to see the subject line in the logs to help identify messages.
How Has This Been Tested?
Since this change affects a file that also is related to SMTP_HEADER_TAG, I tested 4 scenarios:
setting neither SMTP_HEADER_TAG or LOG_SUBJECT
setting only SMTP_HEADER_TAG but not LOG_SUBJECT
setting only LOG_SUBJECT=yes but not SMTP_HEADER_TAG
setting both SMTP_HEADER_TAG and LOG_SUBJECT=yes
Types of Changes
[ ] Bug fix (non-breaking change which fixes an issue)
[x] New feature (non-breaking change which adds functionality)
[ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
[x] Documentation (adding or updating documentation)
Checklist:
[x] My change requires a change to the documentation and I have updated the documentation accordingly.
[x] My change adds a new configuration variable and I have updated the .env.example file accordingly.
And lastly, many thanks for taking your time to help us improve this project !
Creating a Pull Request
We use github actions to do automatic semantic versioning, so please use the following nomenclature for the commit message according to the type of change:
feat:
, and it will trigger a minor version bump.fix
:, and it will trigger a patch version bump.BREAKING CHANGE:
, and it will trigger a major version bump.Description of the change
Resolves issue #68 This simply allows you to pass LOG_SUBJECT=yes as an environment variable in order to enable outputting the subject line in the logs.
Motivation and Context
I like to see the subject line in the logs to help identify messages.
How Has This Been Tested?
Since this change affects a file that also is related to SMTP_HEADER_TAG, I tested 4 scenarios:
Types of Changes
Checklist:
.env.example
file accordingly.And lastly, many thanks for taking your time to help us improve this project !