{"info":{"_postman_id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","name":"Mailer by Xnyder","description":"<html><head></head><body><p>Introducing Xnyder Mailer: Effortless email sending for developers. Just an endpoint and specified parameters, it's that simple! Boost your productivity with Xnyder Mailer today!</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"16645752","collectionId":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","publishedId":"2sA3rxpD5v","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-08-05T09:47:46.000Z"},"item":[{"name":"Home","id":"1b20bc24-dd0a-4cf8-82ca-a1c00e4c4414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://mailerapi.xnyder.com","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"mailer-access-key"},{"key":"value","value":"d8b40bda-9193-4ac8-b7cf-82d2c09ed7c1"}]},"isInherited":true,"source":{"_postman_id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","name":"Mailer by Xnyder","type":"collection"}},"urlObject":{"host":["https://mailerapi.xnyder.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b20bc24-dd0a-4cf8-82ca-a1c00e4c4414"},{"name":"Send Email","id":"4ba31031-8300-4dd7-8214-68999cfdf47a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"host_type\": \"\",\r\n    \"smtp_host\": \"\",\r\n    \"username\": \"\",\r\n    \"password\": \"\",\r\n    \"from_email\": \"\",\r\n    \"to_email\": \"\",\r\n    \"subject\": \"\",\r\n    \"text\": \"\",\r\n    \"html\": \"\",\r\n    \"attachments\": [\r\n        {\r\n            \"filename\": \"\",\r\n            \"path\": \"\"\r\n        }\r\n    ],\r\n    \"sender\": \"\",\r\n    \"reply_to\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mailerapi.xnyder.com/send","description":"<h3 id=\"post-send\">POST /send</h3>\n<p>This endpoint allows you to send an email.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>host_type</code> (string, required): The type of host.</p>\n</li>\n<li><p><code>smtp_host</code> (string, optional): The SMTP host, this is needed if the <code>host_type</code> is equal to <code>OTHER</code>.</p>\n</li>\n<li><p><code>username</code> (string, required): The username for authentication.</p>\n</li>\n<li><p><code>password</code> (string, required): The password for authentication.</p>\n</li>\n<li><p><code>from_email</code> (string, required): The sender's email address ('<a href=\"mailto:sender@server.com\">sender@server.com</a>' or formatted 'Sender Name <a href=\"mailto:sender@server.com\">sender@server.com</a>').</p>\n</li>\n<li><p><code>to_email</code> (string, required): The recipient's email address.</p>\n</li>\n<li><p><code>subject</code> (string, required): The subject of the email.</p>\n</li>\n<li><p><code>text</code> (string, optional): The plain text content of the email.</p>\n</li>\n<li><p><code>html</code> (string, required): The HTML content of the email.</p>\n</li>\n<li><p><code>attachments</code> (array, optional): Array of attachments containing filename and path.</p>\n<ul>\n<li><p><code>filename</code> (string, required): The name of the attached file.</p>\n</li>\n<li><p><code>path</code> (string, required): The path to the attached file.</p>\n</li>\n</ul>\n</li>\n<li><p><code>sender</code> (string, optional): The sender of the email.</p>\n</li>\n<li><p><code>reply_to</code> (string, optional): The email address to which replies should be sent.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"mailer-access-key"},{"key":"value","value":"d8b40bda-9193-4ac8-b7cf-82d2c09ed7c1"}]},"isInherited":true,"source":{"_postman_id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","name":"Mailer by Xnyder","type":"collection"}},"urlObject":{"path":["send"],"host":["https://mailerapi.xnyder.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ba31031-8300-4dd7-8214-68999cfdf47a"},{"name":"Send to Multiple Emails","id":"365d6fd5-b10e-43e1-80f9-2adf4a966f13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"host_type\": \"\",\r\n    \"smtp_host\": \"\",\r\n    \"username\": \"\",\r\n    \"password\": \"\",\r\n    \"from_email\": \"\",\r\n    \"email\": [\r\n        \"\"\r\n    ],\r\n    \"subject\": \"\",\r\n    \"text\": \"\",\r\n    \"html\": \"\",\r\n    \"attachments\": [\r\n        {\r\n            \"filename\": \"\",\r\n            \"path\": \"\"\r\n        }\r\n    ],\r\n    \"sender\": \"\",\r\n    \"reply_to\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://mailerapi.xnyder.com/send/multiple","description":"<h3 id=\"post-sendmultiple\">POST /send/multiple</h3>\n<p>This endpoint allows you to send an email to multiple recipients at once (max 100).</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>host_type</code> (string, required): The type of host.</p>\n</li>\n<li><p><code>smtp_host</code> (string, optional): The SMTP host, this is needed if the <code>host_type</code> is equal to <code>OTHER</code>.</p>\n</li>\n<li><p><code>username</code> (string, required): The username for authentication.</p>\n</li>\n<li><p><code>password</code> (string, required): The password for authentication.</p>\n</li>\n<li><p><code>from_email</code> (string, required): The sender's email address ('<a href=\"mailto:sender@server.com\">sender@server.com</a>' or formatted 'Sender Name <a href=\"https://mailto:sender@server.com\">sender@server.com</a>').</p>\n</li>\n<li><p><code>emails</code> (array, required): Recipients email addresses in an array of strings.</p>\n</li>\n<li><p><code>subject</code> (string, required): The subject of the email.</p>\n</li>\n<li><p><code>text</code> (string, optional): The plain text content of the email.</p>\n</li>\n<li><p><code>html</code> (string, required): The HTML content of the email.</p>\n</li>\n<li><p><code>attachments</code> (array, optional): Array of attachments containing filename and path.</p>\n<ul>\n<li><p><code>filename</code> (string, required): The name of the attached file.</p>\n</li>\n<li><p><code>path</code> (string, required): The path to the attached file.</p>\n</li>\n</ul>\n</li>\n<li><p><code>sender</code> (string, optional): The sender of the email.</p>\n</li>\n<li><p><code>reply_to</code> (string, optional): The email address to which replies should be sent.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"mailer-access-key"},{"key":"value","value":"d8b40bda-9193-4ac8-b7cf-82d2c09ed7c1"}]},"isInherited":true,"source":{"_postman_id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","id":"34511d92-fe70-44b7-a9a5-4de1d6b9e381","name":"Mailer by Xnyder","type":"collection"}},"urlObject":{"path":["send","multiple"],"host":["https://mailerapi.xnyder.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"365d6fd5-b10e-43e1-80f9-2adf4a966f13"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"mailer-access-key"},{"key":"value","value":"d8b40bda-9193-4ac8-b7cf-82d2c09ed7c1"}]}},"event":[{"listen":"prerequest","script":{"id":"416e05f3-1a16-4619-bfdc-eee2c8babf24","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"f39d5803-7dce-4947-ae0c-7bf52b3ebf59","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"key","value":"d8b40bda-9193-4ac8-b7cf-82d2c09ed7c1","type":"string"},{"key":"url","value":"https://mailerapi.xnyder.com","type":"string"},{"key":"other_url","value":"https://api.mailer.xnyder.com","type":"string"}]}