├── .editorconfig ├── .env.example ├── .github ├── CODEOWNERS └── workflows │ └── publish.yaml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── v1 │ ├── activity │ │ ├── byCountry.js │ │ ├── byDate.js │ │ ├── byReadingEnvironment.js │ │ ├── byUserAgent.js │ │ └── list.js │ ├── domains │ │ ├── add.js │ │ ├── delete.js │ │ ├── dns.js │ │ ├── list.js │ │ ├── recipients.js │ │ ├── settings.js │ │ ├── single.js │ │ └── verify.js │ ├── email-verification │ │ ├── create.js │ │ ├── list.js │ │ ├── results.js │ │ ├── single.js │ │ └── verify.js │ ├── email │ │ ├── advancedPersonalization.js │ │ ├── ccBccRecipients.js │ │ ├── getBulkEmailRequestStatus.js │ │ ├── sendAnEmail.js │ │ ├── sendBulkEmail.js │ │ ├── sendScheduleEmail.js │ │ ├── simplePersonalization.js │ │ ├── templatedEmail.js │ │ └── withAttachment.js │ ├── inbounds │ │ ├── create.js │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ ├── messages │ │ ├── list.js │ │ └── single.js │ ├── recipients │ │ ├── addRecipientsToBlocklist.js │ │ ├── addRecipientsToHardBounceList.js │ │ ├── addRecipientsToSpamComplaintList.js │ │ ├── addRecipientsToUnsubscribeList.js │ │ ├── delete.js │ │ ├── deleteRecipientsFromBlocklist.js │ │ ├── deleteRecipientsFromHardBounceList.js │ │ ├── deleteRecipientsFromSpamComplaintList.js │ │ ├── deleteRecipientsFromUnsubscribeList.js │ │ ├── getRecipientsFromBlocklist.js │ │ ├── getRecipientsFromHardBounceList.js │ │ ├── getRecipientsFromSpamComplaintList.js │ │ ├── getRecipientsFromUnsubscribeList.js │ │ ├── list.js │ │ └── single.js │ ├── scheduled │ │ ├── delete.js │ │ ├── list.js │ │ └── single.js │ ├── sms │ │ ├── activities │ │ │ ├── list.js │ │ │ └── single.js │ │ ├── inbounds │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── list.js │ │ │ ├── single.js │ │ │ └── update.js │ │ ├── messages │ │ │ ├── list.js │ │ │ └── single.js │ │ ├── numbers │ │ │ ├── delete.js │ │ │ ├── list.js │ │ │ ├── single.js │ │ │ └── update.js │ │ ├── recipients │ │ │ ├── list.js │ │ │ ├── single.js │ │ │ └── update.js │ │ ├── sendAnSms.js │ │ ├── smsPersonalization.js │ │ └── webhooks │ │ │ ├── create.js │ │ │ ├── delete.js │ │ │ ├── list.js │ │ │ ├── single.js │ │ │ └── update.js │ ├── templates │ │ ├── delete.js │ │ ├── list.js │ │ └── single.js │ ├── tokens │ │ ├── createToken.js │ │ ├── deleteToken.js │ │ └── updateToken.js │ └── webhooks │ │ ├── create.js │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js └── v2 │ ├── email-verification │ ├── create.js │ ├── list.js │ ├── results.js │ ├── single.js │ ├── verifyEmail.js │ └── verifyList.js │ ├── email │ ├── activity │ │ └── list.js │ ├── advancedPersonalization.js │ ├── analytics │ │ ├── byCountry.js │ │ ├── byDate.js │ │ ├── byReadingEnvironment.js │ │ └── byUserAgent.js │ ├── ccBccRecipients.js │ ├── domains │ │ ├── add.js │ │ ├── delete.js │ │ ├── dns.js │ │ ├── list.js │ │ ├── recipients.js │ │ ├── settings.js │ │ ├── single.js │ │ └── verify.js │ ├── getBulkEmailRequestStatus.js │ ├── identities │ │ ├── create.js │ │ ├── delete.js │ │ ├── deleteByEmail.js │ │ ├── list.js │ │ ├── single.js │ │ ├── singleByEmail.js │ │ ├── update.js │ │ └── updateByEmail.js │ ├── inbounds │ │ ├── create.js │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ ├── messages │ │ ├── list.js │ │ └── single.js │ ├── recipients │ │ ├── addRecipientsToBlocklist.js │ │ ├── addRecipientsToHardBounceList.js │ │ ├── addRecipientsToSpamComplaintList.js │ │ ├── addRecipientsToUnsubscribeList.js │ │ ├── delete.js │ │ ├── deleteAllBlocklistRecipients.js │ │ ├── deleteRecipientsFromBlocklist.js │ │ ├── deleteRecipientsFromHardBounceList.js │ │ ├── deleteRecipientsFromSpamComplaintList.js │ │ ├── deleteRecipientsFromUnsubscribeList.js │ │ ├── getRecipientsFromBlocklist.js │ │ ├── getRecipientsFromHardBounceList.js │ │ ├── getRecipientsFromSpamComplaintList.js │ │ ├── getRecipientsFromUnsubscribeList.js │ │ ├── list.js │ │ └── single.js │ ├── scheduled │ │ ├── delete.js │ │ ├── list.js │ │ └── single.js │ ├── sendAnEmail.js │ ├── sendBulkEmail.js │ ├── sendScheduleEmail.js │ ├── simplePersonalization.js │ ├── templatedEmail.js │ ├── templates │ │ ├── delete.js │ │ ├── list.js │ │ └── single.js │ ├── webhooks │ │ ├── create.js │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ └── withAttachment.js │ ├── others │ └── getApiQuota.js │ ├── sms │ ├── activities │ │ ├── list.js │ │ └── single.js │ ├── inbounds │ │ ├── create.js │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ ├── messages │ │ ├── list.js │ │ └── single.js │ ├── numbers │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ ├── recipients │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ ├── sendAnSms.js │ ├── smsPersonalization.js │ └── webhooks │ │ ├── create.js │ │ ├── delete.js │ │ ├── list.js │ │ ├── single.js │ │ └── update.js │ └── tokens │ ├── createToken.js │ ├── deleteToken.js │ └── updateToken.js ├── jestconfig.json ├── package.json ├── renovate.json ├── src ├── __tests__ │ ├── models │ │ ├── Attachment.test.ts │ │ ├── EmailParams.test.ts │ │ ├── EmailWebhook.test.ts │ │ ├── Recipient.test.ts │ │ ├── SMSParams.test.ts │ │ ├── Sender.test.ts │ │ └── Token.test.ts │ ├── modules │ │ ├── Activity.test.ts │ │ ├── Domain.test.ts │ │ ├── Email.test.ts │ │ ├── EmailVerification.test.ts │ │ ├── MailerSend.test.ts │ │ ├── Message.test.ts │ │ ├── Recipient.test.ts │ │ ├── SMS.test.ts │ │ └── Token.test.ts │ └── services │ │ ├── mailersend.utils.test.ts │ │ └── request.test.ts ├── index.ts ├── models │ ├── EmailVerification.ts │ ├── Pagination.ts │ ├── Token.ts │ ├── email │ │ ├── Activity.ts │ │ ├── Analytics.ts │ │ ├── Attachment.ts │ │ ├── Domain.ts │ │ ├── EmailParams.ts │ │ ├── EmailWebhook.ts │ │ ├── Identity.ts │ │ ├── Inbound.ts │ │ ├── Message.ts │ │ ├── Recipient.ts │ │ ├── Schedule.ts │ │ ├── Sender.ts │ │ └── Template.ts │ ├── index.ts │ └── sms │ │ ├── Activity.ts │ │ ├── Inbound.ts │ │ ├── Message.ts │ │ ├── Number.ts │ │ ├── Recipient.ts │ │ ├── SMSParams.ts │ │ ├── SMSPersonalization.ts │ │ └── Webhook.ts ├── modules │ ├── Email.module.ts │ ├── EmailVerification.module.ts │ ├── MailerSend.module.ts │ ├── Others.module.ts │ ├── SMS.module.ts │ ├── Token.module.ts │ ├── email │ │ ├── Activity.module.ts │ │ ├── Analytics.module.ts │ │ ├── Domain.module.ts │ │ ├── Identity.module.ts │ │ ├── Inbound.module.ts │ │ ├── Message.module.ts │ │ ├── Recipient.module.ts │ │ ├── Schedule.module.ts │ │ ├── Template.module.ts │ │ └── Webhook.module.ts │ └── sms │ │ ├── Activity.module.ts │ │ ├── Inbound.module.ts │ │ ├── Message.module.ts │ │ ├── Number.module.ts │ │ ├── Recipient.module.ts │ │ └── Webhook.module.ts └── services │ ├── mailersend.utils.ts │ └── request.service.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | API_KEY=xxx 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | .DS_Store 4 | .idea 5 | /lib 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /examples/v1/activity/byCountry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/activity/byCountry.js -------------------------------------------------------------------------------- /examples/v1/activity/byDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/activity/byDate.js -------------------------------------------------------------------------------- /examples/v1/activity/byReadingEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/activity/byReadingEnvironment.js -------------------------------------------------------------------------------- /examples/v1/activity/byUserAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/activity/byUserAgent.js -------------------------------------------------------------------------------- /examples/v1/activity/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/activity/list.js -------------------------------------------------------------------------------- /examples/v1/domains/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/add.js -------------------------------------------------------------------------------- /examples/v1/domains/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/delete.js -------------------------------------------------------------------------------- /examples/v1/domains/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/dns.js -------------------------------------------------------------------------------- /examples/v1/domains/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/list.js -------------------------------------------------------------------------------- /examples/v1/domains/recipients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/recipients.js -------------------------------------------------------------------------------- /examples/v1/domains/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/settings.js -------------------------------------------------------------------------------- /examples/v1/domains/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/single.js -------------------------------------------------------------------------------- /examples/v1/domains/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/domains/verify.js -------------------------------------------------------------------------------- /examples/v1/email-verification/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email-verification/create.js -------------------------------------------------------------------------------- /examples/v1/email-verification/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email-verification/list.js -------------------------------------------------------------------------------- /examples/v1/email-verification/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email-verification/results.js -------------------------------------------------------------------------------- /examples/v1/email-verification/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email-verification/single.js -------------------------------------------------------------------------------- /examples/v1/email-verification/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email-verification/verify.js -------------------------------------------------------------------------------- /examples/v1/email/advancedPersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/advancedPersonalization.js -------------------------------------------------------------------------------- /examples/v1/email/ccBccRecipients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/ccBccRecipients.js -------------------------------------------------------------------------------- /examples/v1/email/getBulkEmailRequestStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/getBulkEmailRequestStatus.js -------------------------------------------------------------------------------- /examples/v1/email/sendAnEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/sendAnEmail.js -------------------------------------------------------------------------------- /examples/v1/email/sendBulkEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/sendBulkEmail.js -------------------------------------------------------------------------------- /examples/v1/email/sendScheduleEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/sendScheduleEmail.js -------------------------------------------------------------------------------- /examples/v1/email/simplePersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/simplePersonalization.js -------------------------------------------------------------------------------- /examples/v1/email/templatedEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/templatedEmail.js -------------------------------------------------------------------------------- /examples/v1/email/withAttachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/email/withAttachment.js -------------------------------------------------------------------------------- /examples/v1/inbounds/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/inbounds/create.js -------------------------------------------------------------------------------- /examples/v1/inbounds/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/inbounds/delete.js -------------------------------------------------------------------------------- /examples/v1/inbounds/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/inbounds/list.js -------------------------------------------------------------------------------- /examples/v1/inbounds/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/inbounds/single.js -------------------------------------------------------------------------------- /examples/v1/inbounds/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/inbounds/update.js -------------------------------------------------------------------------------- /examples/v1/messages/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/messages/list.js -------------------------------------------------------------------------------- /examples/v1/messages/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/messages/single.js -------------------------------------------------------------------------------- /examples/v1/recipients/addRecipientsToBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/addRecipientsToBlocklist.js -------------------------------------------------------------------------------- /examples/v1/recipients/addRecipientsToHardBounceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/addRecipientsToHardBounceList.js -------------------------------------------------------------------------------- /examples/v1/recipients/addRecipientsToSpamComplaintList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/addRecipientsToSpamComplaintList.js -------------------------------------------------------------------------------- /examples/v1/recipients/addRecipientsToUnsubscribeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/addRecipientsToUnsubscribeList.js -------------------------------------------------------------------------------- /examples/v1/recipients/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/delete.js -------------------------------------------------------------------------------- /examples/v1/recipients/deleteRecipientsFromBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/deleteRecipientsFromBlocklist.js -------------------------------------------------------------------------------- /examples/v1/recipients/deleteRecipientsFromHardBounceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/deleteRecipientsFromHardBounceList.js -------------------------------------------------------------------------------- /examples/v1/recipients/deleteRecipientsFromSpamComplaintList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/deleteRecipientsFromSpamComplaintList.js -------------------------------------------------------------------------------- /examples/v1/recipients/deleteRecipientsFromUnsubscribeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/deleteRecipientsFromUnsubscribeList.js -------------------------------------------------------------------------------- /examples/v1/recipients/getRecipientsFromBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/getRecipientsFromBlocklist.js -------------------------------------------------------------------------------- /examples/v1/recipients/getRecipientsFromHardBounceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/getRecipientsFromHardBounceList.js -------------------------------------------------------------------------------- /examples/v1/recipients/getRecipientsFromSpamComplaintList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/getRecipientsFromSpamComplaintList.js -------------------------------------------------------------------------------- /examples/v1/recipients/getRecipientsFromUnsubscribeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/getRecipientsFromUnsubscribeList.js -------------------------------------------------------------------------------- /examples/v1/recipients/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/list.js -------------------------------------------------------------------------------- /examples/v1/recipients/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/recipients/single.js -------------------------------------------------------------------------------- /examples/v1/scheduled/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/scheduled/delete.js -------------------------------------------------------------------------------- /examples/v1/scheduled/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/scheduled/list.js -------------------------------------------------------------------------------- /examples/v1/scheduled/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/scheduled/single.js -------------------------------------------------------------------------------- /examples/v1/sms/activities/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/activities/list.js -------------------------------------------------------------------------------- /examples/v1/sms/activities/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/activities/single.js -------------------------------------------------------------------------------- /examples/v1/sms/inbounds/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/inbounds/create.js -------------------------------------------------------------------------------- /examples/v1/sms/inbounds/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/inbounds/delete.js -------------------------------------------------------------------------------- /examples/v1/sms/inbounds/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/inbounds/list.js -------------------------------------------------------------------------------- /examples/v1/sms/inbounds/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/inbounds/single.js -------------------------------------------------------------------------------- /examples/v1/sms/inbounds/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/inbounds/update.js -------------------------------------------------------------------------------- /examples/v1/sms/messages/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/messages/list.js -------------------------------------------------------------------------------- /examples/v1/sms/messages/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/messages/single.js -------------------------------------------------------------------------------- /examples/v1/sms/numbers/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/numbers/delete.js -------------------------------------------------------------------------------- /examples/v1/sms/numbers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/numbers/list.js -------------------------------------------------------------------------------- /examples/v1/sms/numbers/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/numbers/single.js -------------------------------------------------------------------------------- /examples/v1/sms/numbers/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/numbers/update.js -------------------------------------------------------------------------------- /examples/v1/sms/recipients/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/recipients/list.js -------------------------------------------------------------------------------- /examples/v1/sms/recipients/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/recipients/single.js -------------------------------------------------------------------------------- /examples/v1/sms/recipients/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/recipients/update.js -------------------------------------------------------------------------------- /examples/v1/sms/sendAnSms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/sendAnSms.js -------------------------------------------------------------------------------- /examples/v1/sms/smsPersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/smsPersonalization.js -------------------------------------------------------------------------------- /examples/v1/sms/webhooks/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/webhooks/create.js -------------------------------------------------------------------------------- /examples/v1/sms/webhooks/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/webhooks/delete.js -------------------------------------------------------------------------------- /examples/v1/sms/webhooks/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/webhooks/list.js -------------------------------------------------------------------------------- /examples/v1/sms/webhooks/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/webhooks/single.js -------------------------------------------------------------------------------- /examples/v1/sms/webhooks/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/sms/webhooks/update.js -------------------------------------------------------------------------------- /examples/v1/templates/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/templates/delete.js -------------------------------------------------------------------------------- /examples/v1/templates/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/templates/list.js -------------------------------------------------------------------------------- /examples/v1/templates/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/templates/single.js -------------------------------------------------------------------------------- /examples/v1/tokens/createToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/tokens/createToken.js -------------------------------------------------------------------------------- /examples/v1/tokens/deleteToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/tokens/deleteToken.js -------------------------------------------------------------------------------- /examples/v1/tokens/updateToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/tokens/updateToken.js -------------------------------------------------------------------------------- /examples/v1/webhooks/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/webhooks/create.js -------------------------------------------------------------------------------- /examples/v1/webhooks/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/webhooks/delete.js -------------------------------------------------------------------------------- /examples/v1/webhooks/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/webhooks/list.js -------------------------------------------------------------------------------- /examples/v1/webhooks/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/webhooks/single.js -------------------------------------------------------------------------------- /examples/v1/webhooks/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v1/webhooks/update.js -------------------------------------------------------------------------------- /examples/v2/email-verification/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email-verification/create.js -------------------------------------------------------------------------------- /examples/v2/email-verification/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email-verification/list.js -------------------------------------------------------------------------------- /examples/v2/email-verification/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email-verification/results.js -------------------------------------------------------------------------------- /examples/v2/email-verification/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email-verification/single.js -------------------------------------------------------------------------------- /examples/v2/email-verification/verifyEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email-verification/verifyEmail.js -------------------------------------------------------------------------------- /examples/v2/email-verification/verifyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email-verification/verifyList.js -------------------------------------------------------------------------------- /examples/v2/email/activity/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/activity/list.js -------------------------------------------------------------------------------- /examples/v2/email/advancedPersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/advancedPersonalization.js -------------------------------------------------------------------------------- /examples/v2/email/analytics/byCountry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/analytics/byCountry.js -------------------------------------------------------------------------------- /examples/v2/email/analytics/byDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/analytics/byDate.js -------------------------------------------------------------------------------- /examples/v2/email/analytics/byReadingEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/analytics/byReadingEnvironment.js -------------------------------------------------------------------------------- /examples/v2/email/analytics/byUserAgent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/analytics/byUserAgent.js -------------------------------------------------------------------------------- /examples/v2/email/ccBccRecipients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/ccBccRecipients.js -------------------------------------------------------------------------------- /examples/v2/email/domains/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/add.js -------------------------------------------------------------------------------- /examples/v2/email/domains/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/delete.js -------------------------------------------------------------------------------- /examples/v2/email/domains/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/dns.js -------------------------------------------------------------------------------- /examples/v2/email/domains/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/list.js -------------------------------------------------------------------------------- /examples/v2/email/domains/recipients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/recipients.js -------------------------------------------------------------------------------- /examples/v2/email/domains/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/settings.js -------------------------------------------------------------------------------- /examples/v2/email/domains/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/single.js -------------------------------------------------------------------------------- /examples/v2/email/domains/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/domains/verify.js -------------------------------------------------------------------------------- /examples/v2/email/getBulkEmailRequestStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/getBulkEmailRequestStatus.js -------------------------------------------------------------------------------- /examples/v2/email/identities/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/create.js -------------------------------------------------------------------------------- /examples/v2/email/identities/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/delete.js -------------------------------------------------------------------------------- /examples/v2/email/identities/deleteByEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/deleteByEmail.js -------------------------------------------------------------------------------- /examples/v2/email/identities/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/list.js -------------------------------------------------------------------------------- /examples/v2/email/identities/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/single.js -------------------------------------------------------------------------------- /examples/v2/email/identities/singleByEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/singleByEmail.js -------------------------------------------------------------------------------- /examples/v2/email/identities/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/update.js -------------------------------------------------------------------------------- /examples/v2/email/identities/updateByEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/identities/updateByEmail.js -------------------------------------------------------------------------------- /examples/v2/email/inbounds/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/inbounds/create.js -------------------------------------------------------------------------------- /examples/v2/email/inbounds/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/inbounds/delete.js -------------------------------------------------------------------------------- /examples/v2/email/inbounds/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/inbounds/list.js -------------------------------------------------------------------------------- /examples/v2/email/inbounds/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/inbounds/single.js -------------------------------------------------------------------------------- /examples/v2/email/inbounds/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/inbounds/update.js -------------------------------------------------------------------------------- /examples/v2/email/messages/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/messages/list.js -------------------------------------------------------------------------------- /examples/v2/email/messages/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/messages/single.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/addRecipientsToBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/addRecipientsToBlocklist.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/addRecipientsToHardBounceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/addRecipientsToHardBounceList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/addRecipientsToSpamComplaintList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/addRecipientsToSpamComplaintList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/addRecipientsToUnsubscribeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/addRecipientsToUnsubscribeList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/delete.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/deleteAllBlocklistRecipients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/deleteAllBlocklistRecipients.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/deleteRecipientsFromBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/deleteRecipientsFromBlocklist.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/deleteRecipientsFromHardBounceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/deleteRecipientsFromHardBounceList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/deleteRecipientsFromSpamComplaintList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/deleteRecipientsFromSpamComplaintList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/deleteRecipientsFromUnsubscribeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/deleteRecipientsFromUnsubscribeList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/getRecipientsFromBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/getRecipientsFromBlocklist.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/getRecipientsFromHardBounceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/getRecipientsFromHardBounceList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/getRecipientsFromSpamComplaintList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/getRecipientsFromSpamComplaintList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/getRecipientsFromUnsubscribeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/getRecipientsFromUnsubscribeList.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/list.js -------------------------------------------------------------------------------- /examples/v2/email/recipients/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/recipients/single.js -------------------------------------------------------------------------------- /examples/v2/email/scheduled/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/scheduled/delete.js -------------------------------------------------------------------------------- /examples/v2/email/scheduled/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/scheduled/list.js -------------------------------------------------------------------------------- /examples/v2/email/scheduled/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/scheduled/single.js -------------------------------------------------------------------------------- /examples/v2/email/sendAnEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/sendAnEmail.js -------------------------------------------------------------------------------- /examples/v2/email/sendBulkEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/sendBulkEmail.js -------------------------------------------------------------------------------- /examples/v2/email/sendScheduleEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/sendScheduleEmail.js -------------------------------------------------------------------------------- /examples/v2/email/simplePersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/simplePersonalization.js -------------------------------------------------------------------------------- /examples/v2/email/templatedEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/templatedEmail.js -------------------------------------------------------------------------------- /examples/v2/email/templates/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/templates/delete.js -------------------------------------------------------------------------------- /examples/v2/email/templates/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/templates/list.js -------------------------------------------------------------------------------- /examples/v2/email/templates/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/templates/single.js -------------------------------------------------------------------------------- /examples/v2/email/webhooks/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/webhooks/create.js -------------------------------------------------------------------------------- /examples/v2/email/webhooks/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/webhooks/delete.js -------------------------------------------------------------------------------- /examples/v2/email/webhooks/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/webhooks/list.js -------------------------------------------------------------------------------- /examples/v2/email/webhooks/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/webhooks/single.js -------------------------------------------------------------------------------- /examples/v2/email/webhooks/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/webhooks/update.js -------------------------------------------------------------------------------- /examples/v2/email/withAttachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/email/withAttachment.js -------------------------------------------------------------------------------- /examples/v2/others/getApiQuota.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/others/getApiQuota.js -------------------------------------------------------------------------------- /examples/v2/sms/activities/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/activities/list.js -------------------------------------------------------------------------------- /examples/v2/sms/activities/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/activities/single.js -------------------------------------------------------------------------------- /examples/v2/sms/inbounds/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/inbounds/create.js -------------------------------------------------------------------------------- /examples/v2/sms/inbounds/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/inbounds/delete.js -------------------------------------------------------------------------------- /examples/v2/sms/inbounds/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/inbounds/list.js -------------------------------------------------------------------------------- /examples/v2/sms/inbounds/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/inbounds/single.js -------------------------------------------------------------------------------- /examples/v2/sms/inbounds/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/inbounds/update.js -------------------------------------------------------------------------------- /examples/v2/sms/messages/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/messages/list.js -------------------------------------------------------------------------------- /examples/v2/sms/messages/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/messages/single.js -------------------------------------------------------------------------------- /examples/v2/sms/numbers/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/numbers/delete.js -------------------------------------------------------------------------------- /examples/v2/sms/numbers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/numbers/list.js -------------------------------------------------------------------------------- /examples/v2/sms/numbers/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/numbers/single.js -------------------------------------------------------------------------------- /examples/v2/sms/numbers/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/numbers/update.js -------------------------------------------------------------------------------- /examples/v2/sms/recipients/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/recipients/list.js -------------------------------------------------------------------------------- /examples/v2/sms/recipients/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/recipients/single.js -------------------------------------------------------------------------------- /examples/v2/sms/recipients/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/recipients/update.js -------------------------------------------------------------------------------- /examples/v2/sms/sendAnSms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/sendAnSms.js -------------------------------------------------------------------------------- /examples/v2/sms/smsPersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/smsPersonalization.js -------------------------------------------------------------------------------- /examples/v2/sms/webhooks/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/webhooks/create.js -------------------------------------------------------------------------------- /examples/v2/sms/webhooks/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/webhooks/delete.js -------------------------------------------------------------------------------- /examples/v2/sms/webhooks/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/webhooks/list.js -------------------------------------------------------------------------------- /examples/v2/sms/webhooks/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/webhooks/single.js -------------------------------------------------------------------------------- /examples/v2/sms/webhooks/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/sms/webhooks/update.js -------------------------------------------------------------------------------- /examples/v2/tokens/createToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/tokens/createToken.js -------------------------------------------------------------------------------- /examples/v2/tokens/deleteToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/tokens/deleteToken.js -------------------------------------------------------------------------------- /examples/v2/tokens/updateToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/examples/v2/tokens/updateToken.js -------------------------------------------------------------------------------- /jestconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/jestconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>mailerlite/renovate-config:base"] 3 | } 4 | -------------------------------------------------------------------------------- /src/__tests__/models/Attachment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/Attachment.test.ts -------------------------------------------------------------------------------- /src/__tests__/models/EmailParams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/EmailParams.test.ts -------------------------------------------------------------------------------- /src/__tests__/models/EmailWebhook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/EmailWebhook.test.ts -------------------------------------------------------------------------------- /src/__tests__/models/Recipient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/Recipient.test.ts -------------------------------------------------------------------------------- /src/__tests__/models/SMSParams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/SMSParams.test.ts -------------------------------------------------------------------------------- /src/__tests__/models/Sender.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/Sender.test.ts -------------------------------------------------------------------------------- /src/__tests__/models/Token.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/models/Token.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/Activity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/Activity.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/Domain.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/Domain.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/Email.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/Email.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/EmailVerification.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/EmailVerification.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/MailerSend.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/MailerSend.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/Message.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/Message.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/Recipient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/Recipient.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/SMS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/SMS.test.ts -------------------------------------------------------------------------------- /src/__tests__/modules/Token.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/modules/Token.test.ts -------------------------------------------------------------------------------- /src/__tests__/services/mailersend.utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/services/mailersend.utils.test.ts -------------------------------------------------------------------------------- /src/__tests__/services/request.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/__tests__/services/request.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/models/EmailVerification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/EmailVerification.ts -------------------------------------------------------------------------------- /src/models/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/Pagination.ts -------------------------------------------------------------------------------- /src/models/Token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/Token.ts -------------------------------------------------------------------------------- /src/models/email/Activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Activity.ts -------------------------------------------------------------------------------- /src/models/email/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Analytics.ts -------------------------------------------------------------------------------- /src/models/email/Attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Attachment.ts -------------------------------------------------------------------------------- /src/models/email/Domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Domain.ts -------------------------------------------------------------------------------- /src/models/email/EmailParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/EmailParams.ts -------------------------------------------------------------------------------- /src/models/email/EmailWebhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/EmailWebhook.ts -------------------------------------------------------------------------------- /src/models/email/Identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Identity.ts -------------------------------------------------------------------------------- /src/models/email/Inbound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Inbound.ts -------------------------------------------------------------------------------- /src/models/email/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Message.ts -------------------------------------------------------------------------------- /src/models/email/Recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Recipient.ts -------------------------------------------------------------------------------- /src/models/email/Schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Schedule.ts -------------------------------------------------------------------------------- /src/models/email/Sender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Sender.ts -------------------------------------------------------------------------------- /src/models/email/Template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/email/Template.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/sms/Activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/Activity.ts -------------------------------------------------------------------------------- /src/models/sms/Inbound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/Inbound.ts -------------------------------------------------------------------------------- /src/models/sms/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/Message.ts -------------------------------------------------------------------------------- /src/models/sms/Number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/Number.ts -------------------------------------------------------------------------------- /src/models/sms/Recipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/Recipient.ts -------------------------------------------------------------------------------- /src/models/sms/SMSParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/SMSParams.ts -------------------------------------------------------------------------------- /src/models/sms/SMSPersonalization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/SMSPersonalization.ts -------------------------------------------------------------------------------- /src/models/sms/Webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/models/sms/Webhook.ts -------------------------------------------------------------------------------- /src/modules/Email.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/Email.module.ts -------------------------------------------------------------------------------- /src/modules/EmailVerification.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/EmailVerification.module.ts -------------------------------------------------------------------------------- /src/modules/MailerSend.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/MailerSend.module.ts -------------------------------------------------------------------------------- /src/modules/Others.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/Others.module.ts -------------------------------------------------------------------------------- /src/modules/SMS.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/SMS.module.ts -------------------------------------------------------------------------------- /src/modules/Token.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/Token.module.ts -------------------------------------------------------------------------------- /src/modules/email/Activity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Activity.module.ts -------------------------------------------------------------------------------- /src/modules/email/Analytics.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Analytics.module.ts -------------------------------------------------------------------------------- /src/modules/email/Domain.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Domain.module.ts -------------------------------------------------------------------------------- /src/modules/email/Identity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Identity.module.ts -------------------------------------------------------------------------------- /src/modules/email/Inbound.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Inbound.module.ts -------------------------------------------------------------------------------- /src/modules/email/Message.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Message.module.ts -------------------------------------------------------------------------------- /src/modules/email/Recipient.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Recipient.module.ts -------------------------------------------------------------------------------- /src/modules/email/Schedule.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Schedule.module.ts -------------------------------------------------------------------------------- /src/modules/email/Template.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Template.module.ts -------------------------------------------------------------------------------- /src/modules/email/Webhook.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/email/Webhook.module.ts -------------------------------------------------------------------------------- /src/modules/sms/Activity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/sms/Activity.module.ts -------------------------------------------------------------------------------- /src/modules/sms/Inbound.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/sms/Inbound.module.ts -------------------------------------------------------------------------------- /src/modules/sms/Message.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/sms/Message.module.ts -------------------------------------------------------------------------------- /src/modules/sms/Number.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/sms/Number.module.ts -------------------------------------------------------------------------------- /src/modules/sms/Recipient.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/sms/Recipient.module.ts -------------------------------------------------------------------------------- /src/modules/sms/Webhook.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/modules/sms/Webhook.module.ts -------------------------------------------------------------------------------- /src/services/mailersend.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/services/mailersend.utils.ts -------------------------------------------------------------------------------- /src/services/request.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/src/services/request.service.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailersend/mailersend-nodejs/HEAD/tsconfig.json --------------------------------------------------------------------------------