smtp.smtp._constructor_
Home > @runlightyear/smtp > Smtp > (constructor)
Smtp.(constructor)
Constructs a new instance of the Smtp
class
constructor(props: SmtpProps);
Parameters
Parameter | Type | Description |
---|---|---|
props | SmtpProps |
Example
defineAction({
name: "smtpExample",
title: "SMTP Example"
apps: ["smtp"],
run: async ({ auths }) => {
const smtp = new Smtp({ auth: auths.smtp });
}
}