Skip to content
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

Merged
merged 9 commits into from
Oct 10, 2021
Merged

Add support for Nodemailer #32

merged 9 commits into from
Oct 10, 2021

Conversation

painotpi
Copy link
Contributor

@painotpi painotpi commented Oct 8, 2021

  • 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

@vercel
Copy link

vercel bot commented Oct 8, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/dimagrossman/docs/9Jqt2EFwEx5SiGWAWMSVbM3ZxS2E
✅ Preview: Canceled

[Deployment for 2f9e962 canceled]

@scopsy
Copy link
Contributor

scopsy commented Oct 9, 2021

Amazing! I'll review this in more depth this evening or tomorrow 🤟

@ComBarnea ComBarnea added @notifire/node-mailer good first issue Good for newcomers Hacktoberfest New Provider enhancement New feature or request and removed good first issue Good for newcomers labels Oct 9, 2021
export class NodemailerProvider implements IEmailProvider {
id = 'nodemailer';
channelType = ChannelTypeEnum.EMAIL as ChannelTypeEnum.EMAIL;
transporter;
Copy link
Contributor

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

Copy link
Contributor Author

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.

@@ -1,6 +1,6 @@
{
"name": "@notifire/core",
"version": "0.1.4",
"version": "0.1.5",
Copy link
Contributor

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 :)

Copy link
Contributor Author

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.

@scopsy
Copy link
Contributor

scopsy commented Oct 9, 2021

@painotpi This looks amazing! Could you just add @types/nodemailer here and revert the version bump changes so we can release it for the unified version with some other changes we have merged? <3

@scopsy
Copy link
Contributor

scopsy commented Oct 10, 2021

@painotpi Tried to add the workflow myself but I can't push to your fork.

Could you please add this file under .github/workflows/test-nodemailer.yml

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

@painotpi
Copy link
Contributor Author

@painotpi Tried to add the workflow myself but I can't push to your fork.

Could you please add this file under .github/workflows/test-nodemailer.yml

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!

@scopsy scopsy merged commit cad5a14 into novuhq:master Oct 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants