SlideShare a Scribd company logo
1 of 12
Vmoksha Technologies
Commit-Deliver –Excel
“ Setting up a Secure Email Engine using
Amazon SES ’’
Vmoksha Technologies Pvt. Ltd.
Cloud computing, also known as on-the-line computing, is a kind of Internet-based computing that provides shared processing
resources and data to computers and other devices on demand. It is a model for enabling ubiquitous, on-demand access to a
shared pool of configurable computing resources (e.g., networks, storage, applications, servers, and services), which can be
rapidly provisioned and released with minimal management effort.
Cloud computing and storage solutions provide enterprises and users with various capabilities to store and process their data in
third-party data centers. It relies on sharing of resources to achieve coherence and economy of scale, similar to a utility (like the
electricity grid) over a network.
Cloud Computing ???
Amazon SES
Vmoksha Technologies Pvt. Ltd.
Amazon Web Services (AWS), a subsidiary of Amazon.com, which offers a suite of cloud computing services that make up
an on-demand cloud computing platform. The scope of this blog is confined to one of the efficient and effective services
which are a part of AWS – Amazon SES.
Amazon SES is a pay-per-use email distribution engine that provides AWS users with an easy, authentic, cost-effective,
reliable and consistent infrastructure for sending and receiving bulk email correspondence using your domain and email
addresses.
Why Vmoksha opts for Amazon SES?
Vmoksha Technologies Pvt. Ltd.
Amazon SES works with Elastic Compute Cloud also known as “EC2,” Lambda, Elastic Beanstalk and various other services. It is
available in different regions such as US-East, US-West, and EU-Ireland, which allow consumers close to these regions to deploy
their applications to ensure high availability and low latency.
Unlike other SMTP players in the market, Amazon SES provides competitive pricing and deliverability.
Listed below are certain benefits of using Amazon SES:
 Trusted by Internet Service Providers (ISP) as an authentic source
 Cost-Effective & Competitive Pay-per-use pricing
 Reliability and Scalability
 Bulk Messaging Engine
 Automation using Amazon Lambda functions
 Ensure deliverability and Active monitoring to make sure that the illegal or questionable content is not
being distributed
 No Infrastructure challenges
 Provides mailbox simulator application as a testing environment
 Real-time notifications via Amazon SNS.
How Vmoksha make use of Amazon SES?
Vmoksha Technologies Pvt. Ltd.
The Amazon SES service along with Amazon Lambda service is configured for sending emails automatically. The mail sent
via SES is verified by ISP and mail service provider such as Google and finally delivered to the employee(s). To ensure the
smooth delivery of the mail, Vmoksha undergoes certain workarounds, which are described in the following sections.
The following diagram explains the scenario:
Setting up Amazon Simple Email Service (SES):
Vmoksha Technologies Pvt. Ltd.
First, set-up Amazon Web Services (AWS) account to use this service
After signing up to the AWS account, log-in into the management console and look for SES under services section or log-in with
the URL, http://aws.amazon.com/ses
Steps to verify Email Addresses and Domain:
Steps to Configure Amazon SES
Go to SES home page, navigate to Identity management menu and choose your option to verify either your email domain or
list of addresses.
For example;
Email addresses – sales@abc.com, finance@abc.com and so on…
Domain – abc.com
The verification is managed using the Amazon SES console or Amazon SES API.
Note: Email address and domain verification status for each AWS region is separate.
Although, Email Addresses verification is quite an easy step, completed by opening the verification URL sent by SES.
Vmoksha Technologies Pvt. Ltd.
Domain verification steps
Domain verification demands the following steps
 Go to Domains under Identity Management, select Verify a New Domain.
 Enter the domain name and select Generate DKIM settings and Click Verify This Domain.
 List of DNS record details will be displayed, which needs to be added in the DNS Zone Files of your domain. Eg.
Godaddy DNS management
 Download the csv file of DNS Records. This contains the details of Text (TXT), Canonical Name (CNAME), and
Mail Exchange (MX) records that need to be added or amended in DNS records.
 Domain verification can be done by just adding a text (TXT) record in your DNS Zone File. But, it is highly
recommended to perform DKIM verification.
 TXT Records looks similar to this,
_amazonses.abc.com TXT pmBGN/7MjnfhTKUZ06Enqq1PeGUaOkw8lGhcfwefcHU=
 On propagating TXT record in domain, the domain verification status changes to verified
 To ensure that the mail is from a trusted source, DKIM verification is required. DKIM verification can be done by
adding CNAME records in DNS Control Panel.
 Once DNS changes are reflected, the domain is fully verified.
Authentication Mechanisms
Vmoksha Technologies Pvt. Ltd.
Email Authentication via SPF or DKIM:
Amazon SES uses Simple Mail Transfer Protocol (SMTP) to send an email. Since SMTP does not provide authentication by
itself, spammers can send messages pretending to be from the actual sender or domain. Most of the ISPs evaluate the email
traffic to check if the emails are legitimate.
Authentication Mechanisms:
There are two authentication mechanisms used by ISPs commonly:
 Email Authentication with SPF (Sender Policy Framework)
 Email Authentication with DKIM (DomainKeys Identified Mail)
Email Authentication with SPF:
Vmoksha Technologies Pvt. Ltd.
Setting up SPF Records and Generating SMTP credentials:
A Sender Policy Framework (SPF) Record indicates to ISPs that you have authorized Amazon SES to send mail for your
domain. SPF Record looks similar to this,
SMTP Credentials can be generated from SES management console under Email Sending section. It prompts to create an
IAM user and provides SMTP username and password upon creation of that IAM user. Another alternative way is to create a
separate IAM user with access to SES service using access key and secret key as SMTP credentials.
Note:
If SPF Record already exists, then, you can append “include:amazonses.com” to the existing record. Also to work with Google
apps, you need to add “include:_spf.google.com ~all”
If SPF record does not exist in the DNS Zone File, text (TXT) record can be added with the value as “v=spf1
include:amazonses.com -all.”
abc.com SPF “v=spf1 include:amazonses.com -all”
Email Authentication with DKIM:
Vmoksha Technologies Pvt. Ltd.
Email Authentication with DKIM:
DKIM (DomainKeys Identified Mail) is a standard that allows senders to sign their email messages & ISPs and use those
signatures to verify whether that messages are legitimate and cannot be modified by a third party in transit. DKIM setup can
be done by adding CNAME records provided by Amazon SES in DNS Zone File.
Here are the samples of CNAME records for DKIM Verification,
mvkw7orpsecw2._domainkey.abc.com CNAME mvkw7orpsecw2.dkim.amazonses.com
jp5x3nni3zf4uo6._domainkey.abc.com CNAME jp5x3nni3zf4uo6.dkim.amazonses.com
7i3j33udxinbhjf6._domainkey.abc.com CNAME7i3j33udxinbhjf6.dkim.amazonses.com
Finally, now it’s time to leave all SMTP servers and move on to AWS Simple Email Service (SES). This way Amazon
Web Services reduces the effort of DevOps and takes IT Revolution to the next level.
Vmoksha Technologies Pvt. Ltd.
 SPF Record Checker – http://spf.myisp.ch/
 SPF Record Validation – http://www.kitterman.com/spf/validate.html
 Overview of SPF Record – http://www.openspf.org/
 Essential Network Tools – http://mxtoolbox.com/NetworkTools.aspx
 Network Tools – http://network-tools.com/
 Mail Tester – https://www.mail-tester.com/
 SPF and DKIM Check – https://www.mail-tester.com/spf-dkim-check
 SPF Record Tool – http://www.mailcleaner.net/tools/test_spf.html
Useful Links
Thank You….
Our Official Website - www.vmokshagroup.com
Facebook Page - https://www.facebook.com/Vmokshagroup
Google + Page - https://plus.google.com/+VmokshaTechnologies
Twitter Page - https://twitter.com/InfoVmoksha
Pinterest Page - https://in.pinterest.com/vmokshagroup/
LinkedIn Page - https://www.linkedin.com/company/vmoksha-technologies
Instagram Page- https://www.instagram.com/vmoksha.technologies/
Contact Us - 080 4137 6300
Address - 2799 & 2800, Srinidhi, Sector-1, 27th Main, HSR Layout, Bengaluru, Karnataka 560102.
Vmoksha Technologies Pvt. Ltd.

More Related Content

Viewers also liked

Efecto matrix con photoshop
Efecto matrix con photoshopEfecto matrix con photoshop
Efecto matrix con photoshopMartín Domingo
 
A Brief History of the NFL
A Brief History of the NFLA Brief History of the NFL
A Brief History of the NFLBruce Strebinger
 
Ethan Gros - DTE Presentation
Ethan Gros - DTE PresentationEthan Gros - DTE Presentation
Ethan Gros - DTE PresentationEthan Gros
 
Las tic y sus implicaciones
Las tic y sus implicacionesLas tic y sus implicaciones
Las tic y sus implicacionesAura Florian
 
Tour of ukai on 21-Feb-2015
Tour of ukai on 21-Feb-2015Tour of ukai on 21-Feb-2015
Tour of ukai on 21-Feb-2015Krunal Bhuvir
 
Ansiedad en niños
Ansiedad en niñosAnsiedad en niños
Ansiedad en niñosKATY FERMIN
 
Urology 4 hydronephrosis
Urology 4 hydronephrosisUrology 4 hydronephrosis
Urology 4 hydronephrosissurgerymgmcri
 
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...Amazon Web Services
 
2016 ANNUAL LOAN DEFAULT REPORT
2016 ANNUAL LOAN DEFAULT REPORT2016 ANNUAL LOAN DEFAULT REPORT
2016 ANNUAL LOAN DEFAULT REPORTJohann Gerdts
 
Wang_Letter_2012_SUFE_Honors_Class_FINAL
Wang_Letter_2012_SUFE_Honors_Class_FINALWang_Letter_2012_SUFE_Honors_Class_FINAL
Wang_Letter_2012_SUFE_Honors_Class_FINALTianyu (Richard) Li
 
Laporan mjs(c) aris satia lorenzo garzia
Laporan mjs(c) aris satia lorenzo garziaLaporan mjs(c) aris satia lorenzo garzia
Laporan mjs(c) aris satia lorenzo garziaArisSatia
 

Viewers also liked (14)

Efecto matrix con photoshop
Efecto matrix con photoshopEfecto matrix con photoshop
Efecto matrix con photoshop
 
10-н сар
10-н сар10-н сар
10-н сар
 
A Brief History of the NFL
A Brief History of the NFLA Brief History of the NFL
A Brief History of the NFL
 
Ethan Gros - DTE Presentation
Ethan Gros - DTE PresentationEthan Gros - DTE Presentation
Ethan Gros - DTE Presentation
 
Mr.brownreferen (1)
Mr.brownreferen (1)Mr.brownreferen (1)
Mr.brownreferen (1)
 
Las tic y sus implicaciones
Las tic y sus implicacionesLas tic y sus implicaciones
Las tic y sus implicaciones
 
Tour of ukai on 21-Feb-2015
Tour of ukai on 21-Feb-2015Tour of ukai on 21-Feb-2015
Tour of ukai on 21-Feb-2015
 
Ansiedad en niños
Ansiedad en niñosAnsiedad en niños
Ansiedad en niños
 
Surgical infection
Surgical infectionSurgical infection
Surgical infection
 
Urology 4 hydronephrosis
Urology 4 hydronephrosisUrology 4 hydronephrosis
Urology 4 hydronephrosis
 
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
(SDD412) Amazon Simple Email Service Deep Dive and Best Practices | AWS re:In...
 
2016 ANNUAL LOAN DEFAULT REPORT
2016 ANNUAL LOAN DEFAULT REPORT2016 ANNUAL LOAN DEFAULT REPORT
2016 ANNUAL LOAN DEFAULT REPORT
 
Wang_Letter_2012_SUFE_Honors_Class_FINAL
Wang_Letter_2012_SUFE_Honors_Class_FINALWang_Letter_2012_SUFE_Honors_Class_FINAL
Wang_Letter_2012_SUFE_Honors_Class_FINAL
 
Laporan mjs(c) aris satia lorenzo garzia
Laporan mjs(c) aris satia lorenzo garziaLaporan mjs(c) aris satia lorenzo garzia
Laporan mjs(c) aris satia lorenzo garzia
 

Similar to Setting up an email engine using amazon ses (vmokhsa technologies pvt. ltd.)

Amazon Simple Email Service
Amazon Simple Email ServiceAmazon Simple Email Service
Amazon Simple Email Servicechrisawheeler
 
2011210seslaunchwebinar 110220233455 Phpapp02
2011210seslaunchwebinar 110220233455 Phpapp022011210seslaunchwebinar 110220233455 Phpapp02
2011210seslaunchwebinar 110220233455 Phpapp02chrisawheeler
 
Aws overview (Amazon Web Services)
Aws overview (Amazon Web Services)Aws overview (Amazon Web Services)
Aws overview (Amazon Web Services)Jatinder Randhawa
 
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...Acquia
 
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...Acquia
 
Embrace the Cloud - Inspiring Conference 2015
Embrace the Cloud - Inspiring Conference 2015Embrace the Cloud - Inspiring Conference 2015
Embrace the Cloud - Inspiring Conference 2015Henrik Møller Rasmussen
 
Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...
Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...
Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...Amazon Web Services
 
Get Started and Migrate Your Data to AWS
Get Started and Migrate Your Data to AWSGet Started and Migrate Your Data to AWS
Get Started and Migrate Your Data to AWSAmazon Web Services
 
AWS Overview - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...
AWS Overview  - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...AWS Overview  - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...
AWS Overview - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...Amazon Web Services
 

Similar to Setting up an email engine using amazon ses (vmokhsa technologies pvt. ltd.) (20)

Amazon Simple Email Service
Amazon Simple Email ServiceAmazon Simple Email Service
Amazon Simple Email Service
 
Amazon Simple Email Service 101
Amazon Simple Email Service 101Amazon Simple Email Service 101
Amazon Simple Email Service 101
 
Amazon Simple Email Service
Amazon Simple Email ServiceAmazon Simple Email Service
Amazon Simple Email Service
 
2011210seslaunchwebinar 110220233455 Phpapp02
2011210seslaunchwebinar 110220233455 Phpapp022011210seslaunchwebinar 110220233455 Phpapp02
2011210seslaunchwebinar 110220233455 Phpapp02
 
Amazon web services aws
Amazon web services awsAmazon web services aws
Amazon web services aws
 
Amazon_SES.pptx
Amazon_SES.pptxAmazon_SES.pptx
Amazon_SES.pptx
 
Aws overview (Amazon Web Services)
Aws overview (Amazon Web Services)Aws overview (Amazon Web Services)
Aws overview (Amazon Web Services)
 
AWS Deployment Best Practices
AWS Deployment Best PracticesAWS Deployment Best Practices
AWS Deployment Best Practices
 
Aws- Amazon Web Services
Aws- Amazon Web ServicesAws- Amazon Web Services
Aws- Amazon Web Services
 
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
 
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
Tom Stickle from Amazon presents - Deploy Securely with Acquia & Amazon Web S...
 
Embrace the Cloud - Inspiring Conference 2015
Embrace the Cloud - Inspiring Conference 2015Embrace the Cloud - Inspiring Conference 2015
Embrace the Cloud - Inspiring Conference 2015
 
AWS Security
AWS SecurityAWS Security
AWS Security
 
Handson Lab Log Analytics
Handson Lab Log AnalyticsHandson Lab Log Analytics
Handson Lab Log Analytics
 
Aws
AwsAws
Aws
 
Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...
Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...
Build a Voice-based Chatbot for Your Amazon Connect Contact Center - SRV326 -...
 
AWS SES
AWS SESAWS SES
AWS SES
 
Get Started and Migrate Your Data to AWS
Get Started and Migrate Your Data to AWSGet Started and Migrate Your Data to AWS
Get Started and Migrate Your Data to AWS
 
Werner Vogels
Werner Vogels Werner Vogels
Werner Vogels
 
AWS Overview - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...
AWS Overview  - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...AWS Overview  - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...
AWS Overview - Cloud for the Enterprise - AWS Enterprise Tour - SF - 2010, D...
 

More from Vmoksha Admin

Material design for android
Material design for androidMaterial design for android
Material design for androidVmoksha Admin
 
Moving to the cloud edited
Moving to the cloud   editedMoving to the cloud   edited
Moving to the cloud editedVmoksha Admin
 
Microsoft azure edited
Microsoft azure   editedMicrosoft azure   edited
Microsoft azure editedVmoksha Admin
 
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...Vmoksha Admin
 
Virtual hosting using nginx
Virtual hosting using nginxVirtual hosting using nginx
Virtual hosting using nginxVmoksha Admin
 
Vmoksha Technologies competencies
Vmoksha Technologies competenciesVmoksha Technologies competencies
Vmoksha Technologies competenciesVmoksha Admin
 

More from Vmoksha Admin (9)

Material design for android
Material design for androidMaterial design for android
Material design for android
 
Saa s edited
Saa s   editedSaa s   edited
Saa s edited
 
Moving to the cloud edited
Moving to the cloud   editedMoving to the cloud   edited
Moving to the cloud edited
 
Microsoft azure edited
Microsoft azure   editedMicrosoft azure   edited
Microsoft azure edited
 
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
 
Virtual hosting using nginx
Virtual hosting using nginxVirtual hosting using nginx
Virtual hosting using nginx
 
Vmoksha Technologies competencies
Vmoksha Technologies competenciesVmoksha Technologies competencies
Vmoksha Technologies competencies
 
Mobility
MobilityMobility
Mobility
 
Mobility
MobilityMobility
Mobility
 

Recently uploaded

'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneCall girls in Ahmedabad High profile
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663Call Girls Mumbai
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...aditipandeya
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 

Recently uploaded (20)

'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Vip Call Girls Aerocity ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Aerocity ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Aerocity ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Aerocity ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 

Setting up an email engine using amazon ses (vmokhsa technologies pvt. ltd.)

  • 1. Vmoksha Technologies Commit-Deliver –Excel “ Setting up a Secure Email Engine using Amazon SES ’’
  • 2. Vmoksha Technologies Pvt. Ltd. Cloud computing, also known as on-the-line computing, is a kind of Internet-based computing that provides shared processing resources and data to computers and other devices on demand. It is a model for enabling ubiquitous, on-demand access to a shared pool of configurable computing resources (e.g., networks, storage, applications, servers, and services), which can be rapidly provisioned and released with minimal management effort. Cloud computing and storage solutions provide enterprises and users with various capabilities to store and process their data in third-party data centers. It relies on sharing of resources to achieve coherence and economy of scale, similar to a utility (like the electricity grid) over a network. Cloud Computing ???
  • 3. Amazon SES Vmoksha Technologies Pvt. Ltd. Amazon Web Services (AWS), a subsidiary of Amazon.com, which offers a suite of cloud computing services that make up an on-demand cloud computing platform. The scope of this blog is confined to one of the efficient and effective services which are a part of AWS – Amazon SES. Amazon SES is a pay-per-use email distribution engine that provides AWS users with an easy, authentic, cost-effective, reliable and consistent infrastructure for sending and receiving bulk email correspondence using your domain and email addresses.
  • 4. Why Vmoksha opts for Amazon SES? Vmoksha Technologies Pvt. Ltd. Amazon SES works with Elastic Compute Cloud also known as “EC2,” Lambda, Elastic Beanstalk and various other services. It is available in different regions such as US-East, US-West, and EU-Ireland, which allow consumers close to these regions to deploy their applications to ensure high availability and low latency. Unlike other SMTP players in the market, Amazon SES provides competitive pricing and deliverability. Listed below are certain benefits of using Amazon SES:  Trusted by Internet Service Providers (ISP) as an authentic source  Cost-Effective & Competitive Pay-per-use pricing  Reliability and Scalability  Bulk Messaging Engine  Automation using Amazon Lambda functions  Ensure deliverability and Active monitoring to make sure that the illegal or questionable content is not being distributed  No Infrastructure challenges  Provides mailbox simulator application as a testing environment  Real-time notifications via Amazon SNS.
  • 5. How Vmoksha make use of Amazon SES? Vmoksha Technologies Pvt. Ltd. The Amazon SES service along with Amazon Lambda service is configured for sending emails automatically. The mail sent via SES is verified by ISP and mail service provider such as Google and finally delivered to the employee(s). To ensure the smooth delivery of the mail, Vmoksha undergoes certain workarounds, which are described in the following sections. The following diagram explains the scenario:
  • 6. Setting up Amazon Simple Email Service (SES): Vmoksha Technologies Pvt. Ltd. First, set-up Amazon Web Services (AWS) account to use this service After signing up to the AWS account, log-in into the management console and look for SES under services section or log-in with the URL, http://aws.amazon.com/ses Steps to verify Email Addresses and Domain: Steps to Configure Amazon SES Go to SES home page, navigate to Identity management menu and choose your option to verify either your email domain or list of addresses. For example; Email addresses – sales@abc.com, finance@abc.com and so on… Domain – abc.com The verification is managed using the Amazon SES console or Amazon SES API. Note: Email address and domain verification status for each AWS region is separate. Although, Email Addresses verification is quite an easy step, completed by opening the verification URL sent by SES.
  • 7. Vmoksha Technologies Pvt. Ltd. Domain verification steps Domain verification demands the following steps  Go to Domains under Identity Management, select Verify a New Domain.  Enter the domain name and select Generate DKIM settings and Click Verify This Domain.  List of DNS record details will be displayed, which needs to be added in the DNS Zone Files of your domain. Eg. Godaddy DNS management  Download the csv file of DNS Records. This contains the details of Text (TXT), Canonical Name (CNAME), and Mail Exchange (MX) records that need to be added or amended in DNS records.  Domain verification can be done by just adding a text (TXT) record in your DNS Zone File. But, it is highly recommended to perform DKIM verification.  TXT Records looks similar to this, _amazonses.abc.com TXT pmBGN/7MjnfhTKUZ06Enqq1PeGUaOkw8lGhcfwefcHU=  On propagating TXT record in domain, the domain verification status changes to verified  To ensure that the mail is from a trusted source, DKIM verification is required. DKIM verification can be done by adding CNAME records in DNS Control Panel.  Once DNS changes are reflected, the domain is fully verified.
  • 8. Authentication Mechanisms Vmoksha Technologies Pvt. Ltd. Email Authentication via SPF or DKIM: Amazon SES uses Simple Mail Transfer Protocol (SMTP) to send an email. Since SMTP does not provide authentication by itself, spammers can send messages pretending to be from the actual sender or domain. Most of the ISPs evaluate the email traffic to check if the emails are legitimate. Authentication Mechanisms: There are two authentication mechanisms used by ISPs commonly:  Email Authentication with SPF (Sender Policy Framework)  Email Authentication with DKIM (DomainKeys Identified Mail)
  • 9. Email Authentication with SPF: Vmoksha Technologies Pvt. Ltd. Setting up SPF Records and Generating SMTP credentials: A Sender Policy Framework (SPF) Record indicates to ISPs that you have authorized Amazon SES to send mail for your domain. SPF Record looks similar to this, SMTP Credentials can be generated from SES management console under Email Sending section. It prompts to create an IAM user and provides SMTP username and password upon creation of that IAM user. Another alternative way is to create a separate IAM user with access to SES service using access key and secret key as SMTP credentials. Note: If SPF Record already exists, then, you can append “include:amazonses.com” to the existing record. Also to work with Google apps, you need to add “include:_spf.google.com ~all” If SPF record does not exist in the DNS Zone File, text (TXT) record can be added with the value as “v=spf1 include:amazonses.com -all.” abc.com SPF “v=spf1 include:amazonses.com -all”
  • 10. Email Authentication with DKIM: Vmoksha Technologies Pvt. Ltd. Email Authentication with DKIM: DKIM (DomainKeys Identified Mail) is a standard that allows senders to sign their email messages & ISPs and use those signatures to verify whether that messages are legitimate and cannot be modified by a third party in transit. DKIM setup can be done by adding CNAME records provided by Amazon SES in DNS Zone File. Here are the samples of CNAME records for DKIM Verification, mvkw7orpsecw2._domainkey.abc.com CNAME mvkw7orpsecw2.dkim.amazonses.com jp5x3nni3zf4uo6._domainkey.abc.com CNAME jp5x3nni3zf4uo6.dkim.amazonses.com 7i3j33udxinbhjf6._domainkey.abc.com CNAME7i3j33udxinbhjf6.dkim.amazonses.com Finally, now it’s time to leave all SMTP servers and move on to AWS Simple Email Service (SES). This way Amazon Web Services reduces the effort of DevOps and takes IT Revolution to the next level.
  • 11. Vmoksha Technologies Pvt. Ltd.  SPF Record Checker – http://spf.myisp.ch/  SPF Record Validation – http://www.kitterman.com/spf/validate.html  Overview of SPF Record – http://www.openspf.org/  Essential Network Tools – http://mxtoolbox.com/NetworkTools.aspx  Network Tools – http://network-tools.com/  Mail Tester – https://www.mail-tester.com/  SPF and DKIM Check – https://www.mail-tester.com/spf-dkim-check  SPF Record Tool – http://www.mailcleaner.net/tools/test_spf.html Useful Links
  • 12. Thank You…. Our Official Website - www.vmokshagroup.com Facebook Page - https://www.facebook.com/Vmokshagroup Google + Page - https://plus.google.com/+VmokshaTechnologies Twitter Page - https://twitter.com/InfoVmoksha Pinterest Page - https://in.pinterest.com/vmokshagroup/ LinkedIn Page - https://www.linkedin.com/company/vmoksha-technologies Instagram Page- https://www.instagram.com/vmoksha.technologies/ Contact Us - 080 4137 6300 Address - 2799 & 2800, Srinidhi, Sector-1, 27th Main, HSR Layout, Bengaluru, Karnataka 560102. Vmoksha Technologies Pvt. Ltd.