Bulk Gmail Sender With Multiple Account
Try for free
1 day trial then $50.00/month - No credit card required now
View all Actors
Bulk Gmail Sender With Multiple Account
bhansalisoft/bulk-gmail-sender-with-multiple-account
Try for free
1 day trial then $50.00/month - No credit card required now
Bulk Gmail Sender With Multiple Account - Send Email From GMail with multiple account support, so that you can send thousends of email from Gmail beyond gmail daily limit.
The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more
1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5 token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10 "Gmail": [
11 {
12 "Gmail_Email": "Test@gmail.com",
13 "App_Password": "qlrzssjzukooftjeydsd"
14 },
15 {
16 "Gmail_Email": "Test1@gmail.com",
17 "App_Password": "qlrzssjzukooftjeydsd"
18 }
19 ],
20 "To": [
21 "test@gmail.com",
22 "test1@gmail.com"
23 ],
24 "Reply_To": "",
25 "Subject": "Test Email",
26 "Message": "test",
27 "SendLimit": "300",
28 "Delay": "10"
29};
30
31(async () => {
32 // Run the Actor and wait for it to finish
33 const run = await client.actor("bhansalisoft/bulk-gmail-sender-with-multiple-account").call(input);
34
35 // Fetch and print Actor results from the run's dataset (if any)
36 console.log('Results from dataset');
37 console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38 const { items } = await client.dataset(run.defaultDatasetId).listItems();
39 items.forEach((item) => {
40 console.dir(item);
41 });
42})();
43
44// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
- 2 monthly users
- 0 stars
- 86.8% runs succeeded
- Created in Aug 2024
- Modified 17 days ago
Categories