This article will teach you how to develop Java code that will send an email with an attachment.
The most frequent and essential requirement for most applications is to send an email. Java Mail API is a platform and standard protocol platform for developing mail and messaging applications.
You'll find detailed guidelines on how to set up JavaMail in your Java application and use the JavaMail API to create and send emails using the SMTP protocol in this source code.
You'll find detailed guidelines on how to set up JavaMail in your Java application and use the JavaMail API to create and send emails using the SMTP protocol in this source code.
To send emails, we'll use a Gmail account. "smtp.gmail.com" is the SMTP server's host address, and the port is "465." For sending emails, the JavaMail API supports both TLS and SSL authentication.
Let's start this tutorial is very easy.
Prerequisites
STS (Spring Tool Suite)
Java 8
Create New Maven Project
Step 1: Open STS (Spring Tool Suite) and choose File - New - Other. A wizard will appear; pick the Maven folder, then the Maven project, and then click the Next button.
Look at the below two figures.
Select Maven Project
Step 2: Click the Next button to open a new Maven project window.
Note: In this phase, select the drive location where you want to create this project by clicking the Browse button.
Step 3: Again new Maven window opens of Archetype. Scroll down and select "org.apache.maven.archetypes maven.archetype-quickstart 1.1".
After selecting click on the Next button.
Step 4: In this step, we write our project description look I have mentioned below copy it, and paste this.
Group Id: com.onlyxcodes
Artifact Id: Email_Send_Attachment
Package: com.onlyxcodes.app
Step 5: See the full directory structure below with the App class and pom.xml file.
pom.xml
The pom.xml file is located here. Because I'm using Maven, I've included the JavaMail (javax.mail) dependency in this file.
Using the SMTP, POP3, or IMAP protocols, you can send and receive HTML emails with images and attachments using the JavaMail dependency.
You need two mail.jar and activation.jar files if you're not using Maven. Set your CLASSPATH environment to include these jar files.
pom.xml:
Java Main Class File
App.java
The App.java class file, often known as the default Java program class file, is included in the com.onlyxcodes.app package.
Within this class file, the main method specified 2 separate methods.
- sendEmailAttachment() - This method contains code to send an email with an attachment file.
- sendSimpleEmail() - This method contains program to send simple plain text email.
I specified a 'to', a 'from', a subject,' and a message above both methods (email body).
Within this class, I implemented the email send code above two methods and explained each line code.
Send Email with Attachment:
sendEmailAttachment()
This method code sends an attachment file email for example I attach and send an image logo file.
Code Explanation:
The protocol responsible for e-mail transmission is SMTP (Simple Mail Transfer Protocol). The specific properties of the host email provider are set using an example of the utility class named Properties.
These properties allow us to communicate with a host SMTP server, in this example Gmail.
SSL-protected communication is enabled by configuring host settings such as authentication, and port number 465 is configured using the Properties object. To set up mail servers, we use the Gmail SMTP server.
Obtain the session object using the Session.getInstance() method.
PasswordAuthentication: Found in Package javax.mail. It is the Authenticator's username and password holder, class.
The method getPasswordAuthentication() uses the Authenticator class from the javax.mail package. This approach is used when password authentication is required.
Discussion within try/catch block :
To construct the message, you must transmit the Session Object to the MimeMessage class creator.
The MimeMessage msg object will be used to hold data such as from, to, subject, and message body.
The InternetAddress() class represents an email address that contains capabilities for defining an email address.
The MimeMessage class provides some different methods for storing data in an object. I took the following technique in this example.
public void addRecipient(Message.RecipientType type, Address address) – It's used to add the registered address to the recipient's type.
Here is the description of the elements.
- type - TO, CC, or BCC would be specified for this. CC contains Carbon Copy here, and Black Carbon Copy is contained by BCC. Example: Message.RecipientType.To for the message.
- addresses -This is an e-mail-based ID. We used the above InternetAddress() method to specify email IDs.
As you can see, the code specifies the location of an image-logo file in the path variable.
MIMEMultipart was created to tell the people that "I have more than one part."
The MimeMultipart object has several sections, each of which is defined as a BodyPart form, whose subclass, MimeBodyPart, can take a file as its material.
Creates the textMime MimebodyPart object for a message.
Create the fileMime object MimebodyPart to contain our file.
Set the message to a textMime object with the message.
Initialize a file and set the variable path to. Attach the image or file to an object called FileMime.
Adds parts of both textMime and fileMime to the mimeMultipart object.
Last sets the content of mimeMultipart as msg.
Transport class finally sends an email or message by send() method.
Output:
Look how the recipient receives an email with an image logo and the message content in his inbox.
Send Simple Plain Text Email:
sendSimpleEmail()
In this method, compose and send a simple plain text email.
Friends I've gone over the host settings and other highlights of the above email send with attachment codes.
The below code is the same as the above code.
Look the difference is this code does not contain MimeMultipart and MimeBodyPart.
Output:
See the recipient receiving a simple plain email in his inbox.
App.java full code:
Library Explanation Top to Bottom:
import javax.mail.Authenticator
The authenticator is a class that represents an object that understands how to get authentication for a network connection. It usually does this by asking the user for information.
import java.io.File
The File Class represents the names of files and directories abstractly.
import java.util.Properties
A stable set of properties is represented by the Properties class. The Properties can be retrieved from or stored in a stream.
import javax.mail.Message
This class is a representation of an email message. To send a message, create a subclass of Message (for example, MimeMessage), fill in the properties and content, and transmit the message using the Transport.send method.
import javax.mail.PasswordAuthentication
This class is nothing more than a storage area for a user name and password.
import javax.mail.Session
A mail session is represented by the Session class.
import javax.mail.Transport
This is an abstract class that represents the transport of a message.
import javax.mail.internet.InternetAddress
The RFC822 syntax is used to indicate an Internet email address in this class.
import javax.mail.internet.MimeBodyPart
A MIME body part is specified by this class. The Internet Headers class is used by MimeBodyPart to read and keep the headers of that body part.
import javax.mail.internet.MimeMessage
A MIME-style email message is described by this class. It implements the Mime Part interface and the Message abstract class.
import javax.mail.internet.MimeMultipart
This class is a subclass of the abstract Multipart class that uses MIME data ways.
No comments:
Post a Comment