Erlang – Email

Erlang email

In this guide, we will discuss Erlang Email. To send an email using Erlang, you need to use a package available from github for the same. The github link is − https://github.com/Vagabond/gen_smtp

This link contains an smtp utility which can be used for sending email from an Erlang application. Follow the steps to have the ability to send an email from Erlang

Step 1 − Download the erl files from the github site. The files should be downloaded to the directory where your helloworld.erl application resides.

Step 2 − Compile all the smtp related files shown in the following list using the erlc command. The following files need to be compiled.

  • smtp_util
  • gen_smtp_client
  • gen_smtp_server
  • gen_smtp_server_session
  • binstr
  • gen_smtp_application
  • socket

Step 3 − The following code can be written to send an email using smtp.

Example

-module(helloworld). 
-export([start/0]). 

start() -> 
   gen_smtp_client:send({"[email protected]", ["[email protected]"], "Subject: testing"},
   
   [{relay, "smtp.gmail.com"}, {ssl, true}, {username, "[email protected]"}, 
      {password, "senderpassword"}]).

The following things need to be noted about the above program

  • The above smtp function is being used along with the smtp server available from google.
  • Since we wanted to send using a secure smtp, we specify the ssl parameter as true.
  • You need to specify the relay as smtp.gmail.com.
  • You need to mention a user name and password which has access to send the email.

Once you configure all the above settings and execute the program, the receiver will successfully receive an email.

Next Topic : Click Here

This Post Has 2 Comments

  1. ikaria juice

    Thanks for your article. What I want to comment on is that when evaluating a good online electronics retail outlet, look for a web page with comprehensive information on critical factors such as the security statement, protection details, payment options, and also other terms plus policies. Continually take time to see the help and also FAQ pieces to get a much better idea of the way the shop operates, what they can do for you, and ways in which you can make the most of the features.

Leave a Reply