Introduction
Xamarin.Forms code runs on multiple platforms - each of which has its own filesystem. This means that the process of reading and writing files is most easily done using the native file APIs on each platform. Alternatively, embedded resources are a simpler solution to distribute data files with an app.
SMTP (Simple Mail Transfer Protocol)
Use SMTP to send and receive mail messages. SMTP provides a set of protocols that simplifies the communication of email messages between email servers. It is an Internet standard for electronic mail (email) transmission. SMTP is a part of the application layer of the TCP/IP protocol. The default TCP port used by SMTP is 25 and the SMTP connections secured by SSL, known as SMTPS, use the default to port 465. Most SMTP server names are written in the form "smtp.domain.com" or "mail.domain.com": for example, a Gmail account will refer to smtp.gmail.com the Gmail port number is 587.
AWS SES (Simple Email Service)
Amazon Simple Email Service (Amazon SES) is a cloud-based email sending service designed to help digital marketers and application developers send transactional emails. It is an Internet standard for electronic mail (email) transmission. It uses the default port 25, 465 or 587. You can use our SMTP interface or one of the AWS SDKs to integrate Amazon SES directly into your existing applications. SES is available in Transport Layer Security (TLS).
Prerequisites
- Visual Studio 2017 (Windows or Mac)
- AWS (Amazon Web Services) Account
Setting up a Xamarin.Forms Project
Start by creating a new Xamarin.Forms project. You’ll learn more by going through the steps yourself.
Choose the Xamarin.Forms App Project type under Cross-platform/App in the New Project dialog.
Name your app, select “Use Shared Library” for shared code, and target both Android and iOS.
You probably want your project and solution to use the same name as your app. Put it in your preferred folder for projects and click Create.
You now have a basic Xamarin.Forms app. Click the Play button to try it out.
Create an SES Service in AWS
In this step, create a service in the AWS. Go to the following
link. Now, sign in using your preferred account.
After sign in, you can create an SES service in AWS console.
Create SMTP Credentials
In this step, you can create an SMTP Credential under SMTP Settings.
Now, you will get the IAM User Name; click Create.
Now, the SMTP credential is created successfully. You can download and use it.
Verify your Email Address
In this step, Verify your Email Address, under Email Addresses menu.
Setting up the User Interface
Go to MainPage.Xaml and write the following code.
MainPage.xaml
- <?xml version="1.0" encoding="utf-8"?>
- <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:XamarinFormsEmail" x:Class="XamarinFormsEmail.MainPage">
- <StackLayout>
- <StackLayout HorizontalOptions="Center" VerticalOptions="Start">
- <Image Margin="0,50,0,0" x:Name="imgBanner" Source="banner.png" ></Image>
- <Image Margin="0,0,0,10" x:Name="imgEmail" HeightRequest="150" Source="aws-ses-logo.png" ></Image>
- <Label Margin="0,0,0,10" Text="Email with AWS SES" FontAttributes="Bold" FontSize="Large" TextColor="#CA6F1E" HorizontalTextAlignment="Center" ></Label>
- <Entry x:Name="txtTo" Placeholder="[email protected]"> </Entry>
- <Entry x:Name="txtSubject" Placeholder="Subject"> </Entry>
- <Editor x:Name="txtBody" HeightRequest="50" > </Editor>
- <Button x:Name="btnSend" Text="Send" Clicked="btnSend_Clicked" />
- </StackLayout>
- </StackLayout>
- </ContentPage>
Click the play button to try it out.
Troubleshooting
Allow less secure apps
Go to following link you must enable Less secure app access
https://myaccount.google.com/lesssecureapps
You can turn on Less secure app access.
Server Name | email-smtp.us-east-1.amazonaws.com |
Host | email-smtp.us-east-1.amazonaws.com |
Port | 25, 465 or 587 |
Use Transport Layer Security (TLS) | Yes |
Send Mail
In this step, write the following code for sending email.
MainPage.xaml.cs
- using System.Net.Mail;
- using Xamarin.Forms;
-
- namespace XamarinFormsEmail
- {
- public partial class MainPage : ContentPage
- {
- public MainPage()
- {
- InitializeComponent();
- }
-
- void btnSend_Clicked(object sender, System.EventArgs e)
- {
- try{
-
- MailMessage mail = new MailMessage();
- SmtpClient SmtpServer = new SmtpClient("email-smtp.us-east-1.amazonaws.com");
-
- mail.From = new MailAddress("[email protected]");
- mail.To.Add(txtTo.Text.ToLower());
- mail.Subject = txtSubject.Text;
- mail.Body = txtBody.Text;
-
- SmtpServer.Port = 587;
- SmtpServer.Host = "email-smtp.us-east-1.amazonaws.com";
- SmtpServer.EnableSsl = true;
- SmtpServer.UseDefaultCredentials = false;
- SmtpServer.Credentials = new System.Net.NetworkCredential("AKI*****2LUH6IA", "AnH9IL********eRL5xjGa2LsmDDbozvsTx");
-
- SmtpServer.Send(mail);
- }
- catch(Exception ex)
- {
- DisplayAlert("Faild", ex.Message, "OK");
- }
- }
- }
- }
Click the Play button to try it out.
Check your inbox
I hope you have understood how to send background email using AWS SES (Simple Email Service) in Xamarin.Forms.
Thanks for reading. Please share comments and feedback.