Merge pull request #643 from automatisch/feature/smtp-send-email
feat: Implement send email action
This commit is contained in:
105
packages/backend/src/apps/smtp/actions/send-email/index.ts
Normal file
105
packages/backend/src/apps/smtp/actions/send-email/index.ts
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
import { IJSONObject } from '@automatisch/types';
|
||||||
|
import defineAction from '../../../../helpers/define-action';
|
||||||
|
import transporter from '../../common/transporter';
|
||||||
|
|
||||||
|
export default defineAction({
|
||||||
|
name: 'Send Email',
|
||||||
|
key: 'sendEmail',
|
||||||
|
description: 'Send an email',
|
||||||
|
substeps: [
|
||||||
|
{
|
||||||
|
key: 'chooseConnection',
|
||||||
|
name: 'Choose connection',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'chooseAction',
|
||||||
|
name: 'Set up action',
|
||||||
|
arguments: [
|
||||||
|
{
|
||||||
|
label: 'From name',
|
||||||
|
key: 'fromName',
|
||||||
|
type: 'string',
|
||||||
|
required: false,
|
||||||
|
description: 'Display name of the sender.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'From email',
|
||||||
|
key: 'fromEmail',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
description: 'Email address of the sender.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Reply to',
|
||||||
|
key: 'replyTo',
|
||||||
|
type: 'string',
|
||||||
|
required: false,
|
||||||
|
description:
|
||||||
|
'Email address to reply to. Defaults to the from email address.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'To',
|
||||||
|
key: 'to',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
description:
|
||||||
|
'Comma seperated list of email addresses to send the email to.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Cc',
|
||||||
|
key: 'cc',
|
||||||
|
type: 'string',
|
||||||
|
required: false,
|
||||||
|
description: 'Comma seperated list of email addresses.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Bcc',
|
||||||
|
key: 'bcc',
|
||||||
|
type: 'string',
|
||||||
|
required: false,
|
||||||
|
description: 'Comma seperated list of email addresses.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Subject',
|
||||||
|
key: 'subject',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
description: 'Subject of the email.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Body',
|
||||||
|
key: 'body',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
description: 'Body of the email.',
|
||||||
|
variables: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'testStep',
|
||||||
|
name: 'Test action',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
async run($) {
|
||||||
|
const info = await transporter($).sendMail({
|
||||||
|
from: `${$.step.parameters.fromName} <${$.step.parameters.fromEmail}>`,
|
||||||
|
to: ($.step.parameters.to as string).split(','),
|
||||||
|
replyTo: $.step.parameters.replyTo as string,
|
||||||
|
cc: ($.step.parameters.cc as string).split(','),
|
||||||
|
bcc: ($.step.parameters.bcc as string).split(','),
|
||||||
|
subject: $.step.parameters.subject as string,
|
||||||
|
text: $.step.parameters.body as string,
|
||||||
|
});
|
||||||
|
|
||||||
|
$.setActionItem({ raw: info as IJSONObject });
|
||||||
|
},
|
||||||
|
});
|
@@ -1,18 +1,8 @@
|
|||||||
import { IGlobalVariable } from '@automatisch/types';
|
import { IGlobalVariable } from '@automatisch/types';
|
||||||
import nodemailer, { TransportOptions } from 'nodemailer';
|
import transporter from '../common/transporter';
|
||||||
|
|
||||||
const verifyCredentials = async ($: IGlobalVariable) => {
|
const verifyCredentials = async ($: IGlobalVariable) => {
|
||||||
const client = nodemailer.createTransport({
|
await transporter($).verify();
|
||||||
host: $.auth.data.host,
|
|
||||||
port: $.auth.data.port,
|
|
||||||
secure: $.auth.data.useTls,
|
|
||||||
auth: {
|
|
||||||
user: $.auth.data.username,
|
|
||||||
pass: $.auth.data.password,
|
|
||||||
},
|
|
||||||
} as TransportOptions);
|
|
||||||
|
|
||||||
await client.verify();
|
|
||||||
|
|
||||||
await $.auth.set({
|
await $.auth.set({
|
||||||
screenName: $.auth.data.username,
|
screenName: $.auth.data.username,
|
||||||
|
16
packages/backend/src/apps/smtp/common/transporter.ts
Normal file
16
packages/backend/src/apps/smtp/common/transporter.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { IGlobalVariable } from '@automatisch/types';
|
||||||
|
import nodemailer, { TransportOptions } from 'nodemailer';
|
||||||
|
|
||||||
|
const transporter = ($: IGlobalVariable) => {
|
||||||
|
return nodemailer.createTransport({
|
||||||
|
host: $.auth.data.host,
|
||||||
|
port: $.auth.data.port,
|
||||||
|
secure: $.auth.data.useTls,
|
||||||
|
auth: {
|
||||||
|
user: $.auth.data.username,
|
||||||
|
pass: $.auth.data.password,
|
||||||
|
},
|
||||||
|
} as TransportOptions);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default transporter;
|
Reference in New Issue
Block a user