Releases: dawidd6/action-send-mail
Releases · dawidd6/action-send-mail
v3.12.0
What's Changed
- build(deps): bump nodemailer from 6.9.8 to 6.9.9 by @dependabot in #195
- Fix for issue #196 by @kroese in #197
- build(deps): bump nodemailer from 6.9.9 to 6.9.10 by @dependabot in #199
- build(deps): bump nodemailer from 6.9.10 to 6.9.12 by @dependabot in #202
- build(deps): bump nodemailer from 6.9.12 to 6.9.13 by @dependabot in #204
New Contributors
Full Changelog: v3.11.0...v3.12.0
v3.11.0
What's Changed
- build(deps): bump nodemailer from 6.9.1 to 6.9.8 by @dependabot in #191
- build(deps): bump @actions/core from 1.10.0 to 1.10.1 by @dependabot in #181
- Update to Node20 by @phoeniixhawk in #193
New Contributors
- @phoeniixhawk made their first contribution in #193
Full Changelog: v3...v3.11.0
v3.10.0: Enable logging and debug of nodemailer (#190)
This should help A LOT to let people understand why things go wrong in this action when talking to the mailhost
v3.9.0: Made "to" optional (incase cc or bcc is provided) (#183)
* Added made to optional (incase cc or bcc is provided) * updated action.yml
v3.8.0: Support reading the subject from a file. (#173)
Allows dynamic subjects to be generated at action runtime (e.g., "Foobar version 1.2.3 is released", where 1.2.3 is not known at action config time). Leverages the existing file:// support for body, but renames getBody to getText, in keeping with this expanded role.
v3.7.2: Clarify that Markdown only works for html_body (#151)
v3.7.1
action: run on node16
v3.7.0: build(deps): bump nodemailer from 6.6.2 to 6.7.8 (#126)
Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.2 to 6.7.8. - [Release notes](https://github.com/nodemailer/nodemailer/releases) - [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodemailer/nodemailer/commits/v6.7.8) --- updated-dependencies: - dependency-name: nodemailer dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
v3.6.1
main: set filename of attachments
v3.6.0
Add ability to set In-Reply-To tag (#81) * Add ability to set In-Reply-To tag This is useful to reply to a specific email, e.g. to a patch sent by email on a mailing list. Please note that both the In-Reply-To and the References tags are filled-in. In theory, only the In-Reply-To tag should be enough but they are both linked to the same idea and in theory most emails readers should support a Message-ID given in In-Reply-To tag. So just in case, we fill both to imitate many email clients. Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net> * Update test.yml Co-authored-by: Dawid Dziurla <dawidd0811@gmail.com>