Automation actor for sending invoices to the accounting department from Motionmailapp.com for paid accounts. Specify in the input to whom the actor should send the email with an attached invoice in PDF. Update the environment attributes as the Username and the Password and set up a Scheduler.
- Modified
- Used by1 user
- Used58 times
- API
- Source code
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token.
const Apify = require('apify');
// Set API token
Apify.client.setOptions({ token: '<YOUR_API_TOKEN>' });
// Prepare actor input
const input = {};
// Run the actor
const run = await Apify.call('vaclavrut/motionmail-send-invoice', input);
// Print actor output (if any)
console.log('Output');
console.dir(run.output);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const dataset = await Apify.openDataset(run.defaultDatasetId, { forceCloud: true });
await dataset.forEach(async (item, index) => {
console.log(JSON.stringify(item));
});