Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7729835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:04:17+00:00 2026-06-01T06:04:17+00:00

I am totally new to Java Mail. I first wanted to execute the program

  • 0

I am totally new to Java Mail. I first wanted to execute the program (which I had through my seniors) and see whether everything is working fine. So when I compile that code I get errors with all the class and packages of Java mail being not found.

Could anyone please list out the things that I need for my program to compile and execute without any problems. I had downloaded the "Java Mail 1.4.5" but there was no installer file in that?

I have Java 1.6 and Windows XP

Please help.

Errors :

C:\>javac SMTPClient.java
SMTPClient.java:2: package javax.mail does not exist
import javax.mail.*;
^
SMTPClient.java:3: package javax.mail.internet does not exist
import javax.mail.internet.*;
^
SMTPClient.java:18: cannot find symbol
symbol  : class Session
location: class SMTPClient
        Session session = Session.getDefaultInstance(properties);
        ^
SMTPClient.java:18: cannot find symbol
symbol  : variable Session
location: class SMTPClient
        Session session = Session.getDefaultInstance(properties);
                          ^
SMTPClient.java:21: cannot find symbol
symbol  : class MimeMessage
location: class SMTPClient
        MimeMessage message = new MimeMessage(session);
        ^
SMTPClient.java:21: cannot find symbol
symbol  : class MimeMessage
location: class SMTPClient
        MimeMessage message = new MimeMessage(session);
                                  ^
SMTPClient.java:25: cannot find symbol
symbol  : class InternetAddress
location: class SMTPClient
        message.setFrom(new InternetAddress(from));
                            ^
SMTPClient.java:28: package Message does not exist
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

                                    ^
SMTPClient.java:28: cannot find symbol
symbol  : class InternetAddress
location: class SMTPClient
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

                                                           ^
SMTPClient.java:40: cannot find symbol
symbol  : class Transport
location: class SMTPClient
Transport t = session.getTransport("smtps");
^
10 errors
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T06:04:18+00:00Added an answer on June 1, 2026 at 6:04 am

    Download the java mail.jar and security.jar

    1.Copy the below code to notepad and save as EmailAgent.java (change the email adresses and password accordingly)

    
    

    import java.security.Security;
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;

    public class EmailAgent {

    private static final String SMTP_HOST_NAME = "smtp.gmail.com";
    private static final String SMTP_PORT = "465";
    private static final String emailMsgTxt = "Test Message Contents";
    private static final String emailSubjectTxt = "A test from gmail";
    private static final String emailFromAddress = "abcd@gmail.com";
    private static final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
    private static final String[] sendTo = { "xyz@gmail.com" };

    public static void main(String args[]) throws Exception {

    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());

    new EmailAgent().sendSSLMessage(sendTo, emailSubjectTxt, emailMsgTxt,
    emailFromAddress);
    System.out.println("Sucessfully Sent mail to All Users");
    }

    public void sendSSLMessage(String recipients[], String subject,
    String message, String from) throws MessagingException {
    boolean debug = true;

    Properties props = new Properties();
    props.put("mail.smtp.host", SMTP_HOST_NAME);
    props.put("mail.smtp.auth", "true");
    props.put("mail.debug", "true");
    props.put("mail.smtp.port", SMTP_PORT);
    props.put("mail.smtp.socketFactory.port", SMTP_PORT);
    props.put("mail.smtp.socketFactory.class", SSL_FACTORY);
    props.put("mail.smtp.socketFactory.fallback", "false");

    Session session = Session.getDefaultInstance(props,
    new javax.mail.Authenticator()
    {
    protected PasswordAuthentication

    getPasswordAuthentication() {
    return new
    PasswordAuthentication("abcd@gmail.com", "password");
    }
    });

    session.setDebug(debug);

    Message msg = new MimeMessage(session);
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);

    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++) {
    addressTo[i] = new InternetAddress(recipients[i]);
    }
    msg.setRecipients(Message.RecipientType.TO, addressTo);

    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    }
    }

    1. Go to run, type cmd and press enter

    2. Navigate to path where EmailAgent.java file is saved.

    3. Copy your mail.jar and security.jar to the same directory where EmailAgent.java is saved

    4. compile java file

      javac -cp .;mail.jar;security.jar EmailAgent.java

    5. Run compiled java class

      java -cp .;mail.jar;security.jar EmailAgent

    And check your sendTo email address inbox.. Bingo 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm totally new to both java and java Server worlds... But I've a good
I'm new in the Java world and I'm totally confused with the sheer number
I'm new to java so apologies if I've got totally the wrong end of
I'm totally new to Android (Java) Development and I'm so excited about it! The
I'm totally new to Flex (moving away from Java for now :(). I have
I´m totally new to programming in java, and following some basic tutorials for my
I'm totally new to data analytics, and was wondering if anyone had any suggestions
I am very new to programming and I am using Java as my first
I am given an assignment but I am totally new to Java (I have
hi i am a totally new guy on JAVA OO concepts ,and this is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.