{"id":40571,"date":"2014-09-26T12:28:00","date_gmt":"2014-09-26T06:58:00","guid":{"rendered":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/"},"modified":"2023-03-29T16:29:06","modified_gmt":"2023-03-29T10:59:06","slug":"why-we-love-amazons-ses-and-you-should-too","status":"publish","type":"post","link":"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/","title":{"rendered":"Why We Love Amazon\u2019s SES (And You Should, Too!)"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>Synopsis<\/strong><\/h4>\n\n\n\n<p>In the previous blog post I elaborated on SES (Simple Email Service). Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more. It is a service, which can be utilized to send emails. It also provides notifications for bounces, complaints and rejected emails.<\/p>\n\n\n\n<p>Other areas of focus in the blog included:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Why to use AWS SES?<\/li>\n\n\n\n<li>Why NOT Amazon SES?<\/li>\n\n\n\n<li>What are the different ways to send Emails via AWS SES?<\/li>\n\n\n\n<li>Is AWS SES too Expensive for Me?<\/li>\n<\/ul>\n\n\n\n<p>Furthermore I will be articulating more about SES.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Heterogeneous Ways to Send Mails from SES<\/strong><\/h4>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Using SMTP<\/strong><\/h5>\n\n\n\n<p>There are different ways you can use SMTP Credentials for sending emails. It includes:<\/p>\n\n\n\n<p><strong>1.&nbsp;Sending from AWS console<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Login to aws console go to SES Service<\/li>\n\n\n\n<li>Click on \u201cEmail Address\u201d Or \u201cDomain\u201d tab in left Frame<\/li>\n\n\n\n<li>Select Email or Domain and click on \u201cSend Test Mail\u201d<\/li>\n\n\n\n<li>Fill in the Details and send Email.<\/li>\n<\/ul>\n\n\n\n<p><strong>2.&nbsp;Sending from command line:&nbsp;<\/strong>People writing programs Directly through SMTP can also send Emails by configuring SMTP with SES. For more info follow the instructions on&nbsp;<a href=\"https:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/send-email-smtp-client-command-line.html\">AWS Doc<\/a><\/p>\n\n\n\n<p><strong>3.&nbsp;Send Emails from Email Client- e.g. Microsoft Outlook 2010:&nbsp;<\/strong>To configure Microsoft Outlook 2010 in your System follow the instructions&nbsp;<a href=\"https:\/\/docs.aws.amazon.com\/ses\/latest\/DeveloperGuide\/configure-email-client.html\">given<\/a>.<\/p>\n\n\n\n<p><strong>4. Send Emails from your Application:<\/strong>&nbsp;You can use SES in a way similar to using Gmail or Hotmail Credentials for sending emails from your application in a way that you don\u2019t share your email Address Credentials in the application. Listed below are the steps to configure SES in an application built in YII Framework:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Download PHPMailer extension for YII Framework from&nbsp;<a href=\"https:\/\/www.yiiframework.com\/extension\/phpmailer\/\">here<\/a>&nbsp;and configure it in YII.<\/li>\n\n\n\n<li>Create a class SendMail in Model and Extend PHPMailer Class and Declare Following Variables:<\/li>\n<\/ul>\n\n\n\n<p><em>class SendMail extends PHPMailer{<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp;<\/em><em>var $Host = \u201ctls:\/\/email-smtp.us-east-1.amazonaws.com\u201d; \/\/Amazon Server based on Region<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; &nbsp; var $Username = \u201cxxxxxxxxxxxxxxxxxx\u201d;&nbsp;&nbsp;&nbsp; \/\/Enter Access Key&nbsp; from Amazon<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var $Password = \u201cxxxxxxxxxxxxxxxxxxx\u201d;&nbsp; \/\/Enter Secret Key &nbsp;from Amazon<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var $Port = 465; &nbsp; \/\/You can use 25, 465 and 587 port to send email<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var $SMTPAuth = true;<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var $From = \u201cexample@example.com\u201d;&nbsp;&nbsp;&nbsp; \/\/From may be any email you want<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var $FromName = \u201cAny Name\u201d; &nbsp;<\/em><\/p>\n\n\n\n<p><em>&nbsp; &nbsp; &nbsp; var $CharSet = \u201cUTF-8\u201d;<\/em><\/p>\n\n\n\n<p><em>&nbsp;var $Sender = \u2018example@example.com\u2019;&nbsp; \/\/Sender has to be verified email !!!<\/em><\/p>\n\n\n\n<p><em>var&nbsp; $SMTPDebug&nbsp; = false; &nbsp; \/\/ set true if you want to debug<\/em><\/p>\n\n\n\n<p><em>var $SMTPKeepAlive = true;<\/em><\/p>\n\n\n\n<p><em>}<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a Function sendEmail to accept Parameter for<\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Whom to send<\/li>\n\n\n\n<li>What to send<\/li>\n\n\n\n<li>What subject<\/li>\n<\/ol>\n\n\n\n<p><em>function sendEmail($emailTo,$subject,$body){<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $this-&gt;AddAddress($emailTo);<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $this-&gt;Subject = ($subject);<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $this-&gt;Body=$body;<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return $this-&gt;Send();<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now Import this class and call sendEmail Function and send email.<\/li>\n<\/ul>\n\n\n\n<p><strong><em>&nbsp;<\/em><\/strong><em>include_once(\u2018SendMail.php\u2019);<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp; $sendMail=new SendMail();<\/em><\/p>\n\n\n\n<p><em>&nbsp;&nbsp; $sendMail-&gt;sendEmail(\u201creciver@example.com\u201d,\u2019T est Email\u2019,\u2019Hello world!\u2019);<\/em><\/p>\n\n\n\n<p><strong>5.&nbsp;Integrating SES with other SMTP server:<\/strong>&nbsp;You can also configure your SMTP server to use SES and send Valid and Non-Spam Emails. Listed are the following SMTP Servers you can configure on-<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Postfix<\/li>\n\n\n\n<li>SendMail<\/li>\n<\/ul>\n\n\n\n<p>The next series of blog on SES(Simple E-Mail Service)&nbsp; I will be discussing more on using AWS API\u2019s to send E-Mails.<\/p>\n\n\n\n<p>Related Blog Posts:<\/p>\n\n\n\n<p>&nbsp;Facts you Must know about AWS Cloud\u2019s Simple Mailing Service<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Synopsis In the previous blog post I elaborated on SES (Simple Email Service). Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more. It is a service, which can be utilized to send emails. It also provides notifications for bounces, complaints [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":40563,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1706,921],"tags":[3541,3542,3543,3544],"class_list":["post-40571","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-aws-cloud-computing-anz","category-cloud-anz","tag-amazon-ses-anz","tag-different-ways-to-send-e-mails-using-ses-anz","tag-send-e-mails-with-aws-anz","tag-send-e-mails-with-ses-anz"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Why We Love Amazon\u2019s SES (And You Should, Too!) - Blazeclan<\/title>\n<meta name=\"description\" content=\"Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why We Love Amazon\u2019s SES (And You Should, Too!) - Blazeclan\" \/>\n<meta property=\"og:description\" content=\"Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/\" \/>\n<meta property=\"og:site_name\" content=\"Blazeclan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/blazeclan.hq\/\" \/>\n<meta property=\"article:published_time\" content=\"2014-09-26T06:58:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-29T10:59:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Team Blazeclan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:site\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team Blazeclan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/\"},\"author\":{\"name\":\"Team Blazeclan\",\"@id\":\"https:\/\/blazeclan.com\/anz\/#\/schema\/person\/f235d6bda2f7123cea0ce303dc24d0a5\"},\"headline\":\"Why We Love Amazon\u2019s SES (And You Should, Too!)\",\"datePublished\":\"2014-09-26T06:58:00+00:00\",\"dateModified\":\"2023-03-29T10:59:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/\"},\"wordCount\":673,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/anz\/#organization\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png\",\"keywords\":[\"Amazon SES\",\"Different ways to send E-Mails using SES\",\"Send E-Mails with AWS\",\"Send E-mails with SES\"],\"articleSection\":[\"AWS Cloud Computing\",\"Cloud\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/\",\"url\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/\",\"name\":\"Why We Love Amazon\u2019s SES (And You Should, Too!) - Blazeclan\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/anz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png\",\"datePublished\":\"2014-09-26T06:58:00+00:00\",\"dateModified\":\"2023-03-29T10:59:06+00:00\",\"description\":\"Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more.\",\"breadcrumb\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png\",\"width\":1650,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blazeclan.com\/anz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why We Love Amazon\u2019s SES (And You Should, Too!)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blazeclan.com\/anz\/#website\",\"url\":\"https:\/\/blazeclan.com\/anz\/\",\"name\":\"Blazeclan\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/anz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blazeclan.com\/anz\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blazeclan.com\/anz\/#organization\",\"name\":\"Blazeclan\",\"url\":\"https:\/\/blazeclan.com\/anz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/blazeclan.com\/anz\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"caption\":\"Blazeclan\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/anz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/blazeclan.hq\/\",\"https:\/\/x.com\/blazeclan_hq\",\"https:\/\/www.instagram.com\/blazeclantechnologies\/\",\"https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/\",\"https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blazeclan.com\/anz\/#\/schema\/person\/f235d6bda2f7123cea0ce303dc24d0a5\",\"name\":\"Team Blazeclan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/blazeclan.com\/anz\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cf296307abc1182a3462770449cbb6c6db0e45e18d2e60d831842e611d8ed6a6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cf296307abc1182a3462770449cbb6c6db0e45e18d2e60d831842e611d8ed6a6?s=96&d=mm&r=g\",\"caption\":\"Team Blazeclan\"},\"sameAs\":[\"https:\/\/blazeclan.com\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why We Love Amazon\u2019s SES (And You Should, Too!) - Blazeclan","description":"Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/","og_locale":"en_US","og_type":"article","og_title":"Why We Love Amazon\u2019s SES (And You Should, Too!) - Blazeclan","og_description":"Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more.","og_url":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/","og_site_name":"Blazeclan","article_publisher":"https:\/\/www.facebook.com\/blazeclan.hq\/","article_published_time":"2014-09-26T06:58:00+00:00","article_modified_time":"2023-03-29T10:59:06+00:00","og_image":[{"width":1650,"height":680,"url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png","type":"image\/png"}],"author":"Team Blazeclan","twitter_card":"summary_large_image","twitter_creator":"@blazeclan_hq","twitter_site":"@blazeclan_hq","twitter_misc":{"Written by":"Team Blazeclan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#article","isPartOf":{"@id":"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/"},"author":{"name":"Team Blazeclan","@id":"https:\/\/blazeclan.com\/anz\/#\/schema\/person\/f235d6bda2f7123cea0ce303dc24d0a5"},"headline":"Why We Love Amazon\u2019s SES (And You Should, Too!)","datePublished":"2014-09-26T06:58:00+00:00","dateModified":"2023-03-29T10:59:06+00:00","mainEntityOfPage":{"@id":"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/"},"wordCount":673,"commentCount":0,"publisher":{"@id":"https:\/\/blazeclan.com\/anz\/#organization"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png","keywords":["Amazon SES","Different ways to send E-Mails using SES","Send E-Mails with AWS","Send E-mails with SES"],"articleSection":["AWS Cloud Computing","Cloud"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blazeclan.com\/anz\/blog\/why-we-love-amazons-ses-and-you-should-too\/","url":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/","name":"Why We Love Amazon\u2019s SES (And You Should, Too!) - Blazeclan","isPartOf":{"@id":"https:\/\/blazeclan.com\/anz\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png","datePublished":"2014-09-26T06:58:00+00:00","dateModified":"2023-03-29T10:59:06+00:00","description":"Simple Email Service is a fully managed service which allows you to send emails for transactions, marketing, system generated mails, newsletters and much more.","breadcrumb":{"@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#primaryimage","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2023\/03\/Why-We-Love-Amazons-SES-And-You-Should-Too.png","width":1650,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/blazeclan.com\/blog\/why-we-love-amazons-ses-and-you-should-too\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blazeclan.com\/anz\/"},{"@type":"ListItem","position":2,"name":"Why We Love Amazon\u2019s SES (And You Should, Too!)"}]},{"@type":"WebSite","@id":"https:\/\/blazeclan.com\/anz\/#website","url":"https:\/\/blazeclan.com\/anz\/","name":"Blazeclan","description":"","publisher":{"@id":"https:\/\/blazeclan.com\/anz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blazeclan.com\/anz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/blazeclan.com\/anz\/#organization","name":"Blazeclan","url":"https:\/\/blazeclan.com\/anz\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/blazeclan.com\/anz\/#\/schema\/logo\/image\/","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","caption":"Blazeclan"},"image":{"@id":"https:\/\/blazeclan.com\/anz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/blazeclan.hq\/","https:\/\/x.com\/blazeclan_hq","https:\/\/www.instagram.com\/blazeclantechnologies\/","https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/","https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow"]},{"@type":"Person","@id":"https:\/\/blazeclan.com\/anz\/#\/schema\/person\/f235d6bda2f7123cea0ce303dc24d0a5","name":"Team Blazeclan","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/blazeclan.com\/anz\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cf296307abc1182a3462770449cbb6c6db0e45e18d2e60d831842e611d8ed6a6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cf296307abc1182a3462770449cbb6c6db0e45e18d2e60d831842e611d8ed6a6?s=96&d=mm&r=g","caption":"Team Blazeclan"},"sameAs":["https:\/\/blazeclan.com\/"]}]}},"_links":{"self":[{"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/posts\/40571","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/comments?post=40571"}],"version-history":[{"count":0,"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/posts\/40571\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/media\/40563"}],"wp:attachment":[{"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/media?parent=40571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/categories?post=40571"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blazeclan.com\/anz\/wp-json\/wp\/v2\/tags?post=40571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}