Apify act to send mail.
{
// Email address of the recipient(s) (e.g. "Apifier <[email protected]>")
// Required
to: String,
// Email CC same format as to
// Required
cc: String
// Email BCC same format as to
bcc: String
// Email subject
// Required
subject: String,
// Text body of Email
// Required
text: String,
}
Apify.call({
'apify/send-mail',
JSON.stringify({
to: '[email protected]',
subject: 'Test from act',
text: "Email text"
}),
{}
});
For a specific crawler set the following parameters:
https://api.apifier.com/v2/acts/apify~send-mail/runs?token=APIFIER_API_TOKEN You can find your API token on your Apifier account page.
{
"to": "[email protected]",
"subject": "Test from crawler",
"text": "Text"
}