Skip to main content

smtp.smtp._constructor_

Home > @runlightyear/smtp > Smtp > (constructor)

Smtp.(constructor)

Constructs a new instance of the Smtp class

Signature:
constructor(props: SmtpProps);

Parameters

ParameterTypeDescription
propsSmtpProps

Example

defineAction({
name: "smtpExample",
title: "SMTP Example"
apps: ["smtp"],
run: async ({ auths }) => {
const smtp = new Smtp({ auth: auths.smtp });
}
}