-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Nodemailer #32
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/dimagrossman/docs/9Jqt2EFwEx5SiGWAWMSVbM3ZxS2E [Deployment for 2f9e962 canceled] |
Amazing! I'll review this in more depth this evening or tomorrow 🤟 |
export class NodemailerProvider implements IEmailProvider { | ||
id = 'nodemailer'; | ||
channelType = ChannelTypeEnum.EMAIL as ChannelTypeEnum.EMAIL; | ||
transporter; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if I recall corectly there is a @types/nodemailer
package, maybe we can install it and the set the transporter type:
private transports: Transports
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scopsy Included types for nodemailer.
packages/core/package.json
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "@notifire/core", | |||
"version": "0.1.4", | |||
"version": "0.1.5", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please revert the version bump changes from here and the changelog files? We will release a unified version along with the other changes we have waiting :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scopsy Reverted my changes for the version bump on @notfire/core
in the package.json
and changelog.md
files.
@painotpi This looks amazing! Could you just add |
@painotpi Tried to add the workflow myself but I can't push to your fork. Could you please add this file under name: Test @notifire/nodemailer
on:
push:
paths:
- "providers/nodemailer/**"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
- run: rm -rf build
- run: yarn install
- run: yarn bootstrap
- run: yarn build
- name: Test
working-directory: "providers/nodemailer"
run: yarn test
|
@scopsy done! |
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Feature Add Node Mailer Provider #24, adds support for Nodemailer
What is the current behavior? (You can also link to an open issue here)
N/A
What is the new behavior (if this is a feature change)?
Adds Nodemailer wrapper for Notifire
Other information:
N/A