{"id":43394376,"url":"https://github.com/codedbycan/mailquickbulk","last_synced_at":"2026-02-02T14:03:30.438Z","repository":{"id":266877089,"uuid":"899618707","full_name":"codedByCan/mailQuickBulk","owner":"codedByCan","description":"📬mailQuickBulk is a versatile email sending module for Node.js that supports multiple email service providers. Whether you use MailerSend, SendGrid, Mailjet, Brevo, or Postmark, mailQuick simplifies sending emails through a unified interface. 🚀","archived":false,"fork":false,"pushed_at":"2024-12-06T16:37:08.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-15T15:37:33.514Z","etag":null,"topics":["mailquickbulk"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/mailquickbulk","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codedByCan.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-06T16:36:42.000Z","updated_at":"2025-03-18T08:22:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"230f4cf3-ac97-4fad-bb2e-b53b2f091b36","html_url":"https://github.com/codedByCan/mailQuickBulk","commit_stats":null,"previous_names":["fastuptime/mailquickbulk","codedbycan/mailquickbulk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codedByCan/mailQuickBulk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedByCan%2FmailQuickBulk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedByCan%2FmailQuickBulk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedByCan%2FmailQuickBulk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedByCan%2FmailQuickBulk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codedByCan","download_url":"https://codeload.github.com/codedByCan/mailQuickBulk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedByCan%2FmailQuickBulk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29012710,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T12:48:30.580Z","status":"ssl_error","status_checked_at":"2026-02-02T12:46:38.384Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mailquickbulk"],"created_at":"2026-02-02T14:03:29.553Z","updated_at":"2026-02-02T14:03:30.429Z","avatar_url":"https://github.com/codedByCan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📬 mailQuickBulk\r\n\r\n**mailQuick** is a versatile email sending module for Node.js that supports multiple email service providers. Whether you use MailerSend, SendGrid, Mailjet, Brevo, or Postmark, `mailQuick` simplifies sending emails through a unified interface. 🚀\r\n\r\n## 🔧 Installation\r\n\r\nTo get started with `mailQuick`, you need to install it via npm:\r\n\r\n```bash\r\nnpm install mailquickbulk\r\n```\r\n\r\n## 🛠️ Configuration\r\n\r\nTo use `mailQuick`, you'll need to initialize it with your email service provider's credentials. Here's a brief guide on how to configure each supported provider:\r\n\r\n### 📧 Supported Providers\r\n\r\n- **MailerSend**\r\n- **SendGrid**\r\n- **Mailjet**\r\n- **Brevo**\r\n- **Postmark**\r\n\r\n### 📜 Example Configuration\r\n\r\nHere's how you can set up `mailQuick` for different providers:\r\n\r\n```javascript\r\nconst mailQuick = require('mailquick');\r\n\r\n// Initialize with provider and credentials\r\nmailQuick.init({\r\n    provider: 'sendgrid',\r\n    apiKey: 'your-sendgrid-api-key',\r\n    from: 'your-email@example.com',\r\n    fromName: 'Your Name'\r\n});\r\n\r\n// Send an email\r\nmailQuick.send({\r\n    to: ['mail@gmail.com', 'mail2@gmail.com'],\r\n    subject: 'Hello World',\r\n    html: '\u003cp\u003eThis is a test email sent using mailQuick!\u003c/p\u003e'\r\n}).then(response =\u003e {\r\n    console.log(response); // { status: true, message: 'Mail sent' }\r\n}).catch(error =\u003e {\r\n    console.error(error); // { status: false, message: 'Mail not sent' }\r\n});\r\n```\r\n\r\n### 🛠️ Provider-Specific Setup\r\n\r\n#### MailerSend\r\n\r\n```javascript\r\nmailQuick.init({\r\n    provider: 'mailersend',\r\n    apiKey: 'your-mailersend-api-key',\r\n    from: 'your-email@example.com',\r\n    fromName: 'Your Name'\r\n});\r\n```\r\n\r\n#### SendGrid\r\n\r\n```javascript\r\nmailQuick.init({\r\n    provider: 'sendgrid',\r\n    apiKey: 'your-sendgrid-api-key',\r\n    from: 'your-email@example.com',\r\n    fromName: 'Your Name'\r\n});\r\n```\r\n\r\n#### Mailjet\r\n\r\n```javascript\r\nmailQuick.init({\r\n    provider: 'mailjet',\r\n    apiKey: 'your-mailjet-api-key',\r\n    apiSecret: 'your-mailjet-api-secret',\r\n    from: 'your-email@example.com',\r\n    fromName: 'Your Name'\r\n});\r\n```\r\n\r\n#### Brevo\r\n\r\n```javascript\r\nmailQuick.init({\r\n    provider: 'brevo',\r\n    apiKey: 'your-brevo-api-key',\r\n    from: 'your-email@example.com',\r\n    fromName: 'Your Name'\r\n});\r\n```\r\n\r\n#### Postmark\r\n\r\n```javascript\r\nmailQuick.init({\r\n    provider: 'postmark',\r\n    apiKey: 'your-postmark-api-key',\r\n    from: 'your-email@example.com',\r\n    fromName: 'Your Name'\r\n});\r\n```\r\n\r\n## 🌐 Usage\r\n\r\nUse the `send` method to dispatch an email. The required parameters are:\r\n\r\n- `to` - Recipient email address.\r\n- `subject` - Email subject.\r\n- `html` - Email body in HTML format.\r\n\r\nExample:\r\n\r\n```javascript\r\nmailQuick.send({\r\n    to: ['mail@gmail.com', 'mail2@gmail.com'],\r\n    subject: 'Welcome!',\r\n    html: '\u003cp\u003eThanks for signing up with mailQuick!\u003c/p\u003e'\r\n}).then(response =\u003e {\r\n    console.log(response); // { status: true, message: 'Mail sent' }\r\n}).catch(error =\u003e {\r\n    console.error(error); // { status: false, message: 'Mail not sent' }\r\n});\r\n```\r\n\r\n## 🛡️ Error Handling\r\n\r\nIf something goes wrong, `mailQuick` will return an object with `status: false` and a corresponding error message. Always handle these responses to ensure proper error management.\r\n\r\n## 💬 Contributing\r\n\r\nWe welcome contributions to `mailQuick`! If you have suggestions, bug fixes, or improvements, please submit a pull request or open an issue on our [GitHub repository](https://github.com/fastuptime/mailQuick).\r\n\r\n## 📝 License\r\n\r\n`mailQuick` is licensed under the MIT License. See [LICENSE](LICENSE) for more details.\r\n\r\n## 👋 Acknowledgments\r\n\r\nSpecial thanks to the maintainers and contributors of the email service providers' APIs for making this package possible.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodedbycan%2Fmailquickbulk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodedbycan%2Fmailquickbulk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodedbycan%2Fmailquickbulk/lists"}