Forward SMS Messages to Email Using Java

Businesses get communications through many channels. It can be handy to have a searchable archive of messages in one place. Forwarding SMS messages to email lets you keep both kinds of messages in one spot. Plivo makes it easy to forward SMS messages to email using the most popular web development languages. Here we walk through the process with Java.

Prerequisites

To get started, you need a Plivo account — sign up with your work email address if you don’t have one already. To receive incoming messages, you must have a Plivo phone number that supports SMS; you can rent numbers from the Numbers page of the Plivo console or by using the Numbers API. If this is your first time using Plivo APIs, follow our instructions to set up a Java development environment.

The code example below presumes you have a Gmail account, but it’s easy to edit the code to support another SMTP client.

Create the forward SMS application

Edit the PlivoSmsApplication.java file in the src/main/java/com.example.demo/ folder and paste into it this code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.example.plivo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.*;

import javax.mail.*;
import javax.mail.Message;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;

@SpringBootApplication
@RestController

public class PlivoApplication {
	public static void main(String[] args) {
		SpringApplication.run(PlivoApplication.class, args);
	}

	@PostMapping("/email_sms/")
	public void postBody(String From, String To, String Text) {
		System.out.println(From + " " + To + " " + Text);
		final String username = "<email_address>";
		final String password = "<password>";
	
		Properties prop = new Properties();
		prop.put("mail.smtp.host", "smtp.gmail.com");
		prop.put("mail.smtp.port", "587");
		prop.put("mail.smtp.auth", "true");
		prop.put("mail.smtp.starttls.enable", "true"); //TLS
	
		Session session = Session.getInstance(prop,
				new javax.mail.Authenticator() {
					protected PasswordAuthentication getPasswordAuthentication() {
						return new PasswordAuthentication(username, password);
					}
				});
	
		try {
			Message message = new MimeMessage(session);
			message.setFrom(new InternetAddress("<from_email_address>"));
			message.setRecipients(
					Message.RecipientType.TO,
					InternetAddress.parse("<recipient_address>")
			);
			message.setSubject("SMS from" + From);
			message.setText(Text);
			Transport.send(message);
			System.out.println("Email sent");
	
		} catch (MessagingException e) {
			e.printStackTrace();
		}
	}
}

Save the file and run it.

Note: If you use Gmail to send email, you must use an app password, which will be treated as your password to send email from the application.

Save the file and run it.

Create a Plivo application

Associate the controller you created with Plivo by creating a Plivo application. Visit Messaging > Applications and click Add New Application. You can also use Plivo’s Application API.

Give your application a name — we called ours Email SMS. Enter the server URL you want to use (for example https://<yourdomain>.com/email_sms/) in the Message URL field and set the method to POST. Click Create Application to save your application.

Create Application

Assign a Plivo number to your application

Navigate to the Numbers page and select the phone number you want to use for this application.

From the Application Type drop-down, select XML Application.

From the Plivo Application drop-down, select Email SMS (the name we gave the application).

Click Update Number to save.

Assign Application

Test

Send a text message to the Plivo number you associated with the application using a regular mobile phone. The incoming message should be forwarded to the email address you specified.