Skip to content

VaclavRut/act-send-mail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

act-send-mail

Apify act to send mail.

Input

{
    // 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,

}

Usage

From other Apify act

Apify.call({
    'apify/send-mail',
    JSON.stringify({
        to: '[email protected]',
        subject: 'Test from act',
        text: "Email text"
    }),
    {}
});

From Apify Crawler finish webhook

For a specific crawler set the following parameters:

Finish webhook URL (finishWebhookUrl)

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.

Finish webhook data (finishWebhookData)

{
    "to": "[email protected]",
    "subject": "Test from crawler",
    "text": "Text"
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published