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

  • Home
  • SEARCH
  • 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 9147033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:53:23+00:00 2026-06-17T10:53:23+00:00

I’m trying to send an email without Gmail and using javax.mail . In particular,

  • 0

I’m trying to send an email without Gmail and using javax.mail. In particular, I use two files:
mailSender.java and the MainActivity.

mailSender.java:

package com.polito.gmail;

import java.util.Date;
import java.util.Properties;

import javax.activation.CommandMap;
import javax.activation.MailcapCommandMap;
import javax.mail.BodyPart;
import javax.mail.Multipart;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;

public class mailSender extends javax.mail.Authenticator {
    private String _user;
    private String _pass;

    private String[] destAddr = {"user1@hotmail.it", "user2@gmail.com"};
    private String fromAddr = "from@gmail.com";

    private String _port;
    private String _sport;

    private String _host;

    private String _subject = "New Mail";
    private String _body;

    private boolean _auth;

    private boolean _debuggable;

    private Multipart _multipart;

    public mailSender() {
        _host = "smtp.gmail.com"; // default smtp server
        _port = "465"; // default smtp port
        _sport = "465"; // default socketfactory port

        _user = ""; // username
        _pass = ""; // password
        _body = ""; // email body

        _debuggable = false; // debug mode on or off - default off
        _auth = true; // smtp authentication - default on

        _multipart = new MimeMultipart();

        // There is something wrong with MailCap, javamail can not find a
        // handler for the multipart/mixed part, so this bit needs to be added.
        MailcapCommandMap mc = (MailcapCommandMap) CommandMap.getDefaultCommandMap();
        mc.addMailcap("text/html;; x-java-content-handler=com.sun.mail.handlers.text_html");
        mc.addMailcap("text/xml;; x-java-content-handler=com.sun.mail.handlers.text_xml");
        mc.addMailcap("text/plain;; x-java-content-handler=com.sun.mail.handlers.text_plain");
        mc.addMailcap("multipart/*;; x-java-content-handler=com.sun.mail.handlers.multipart_mixed");
        mc.addMailcap("message/rfc822;; x-java-content-handler=com.sun.mail.handlers.message_rfc822");
        CommandMap.setDefaultCommandMap(mc);
    }

    public mailSender(String user, String pass) {
        this();
        _user = user;
        _pass = pass;
    }

    public boolean send() throws Exception {
        Properties props = _setProperties();

        if (!_user.equals("") && !_pass.equals("") && destAddr.length > 0
                && !fromAddr.equals("") && !_subject.equals("")
                && !_body.equals("")) {
            Session session = Session.getInstance(props, this);

            MimeMessage msg = new MimeMessage(session);

            msg.setFrom(new InternetAddress(fromAddr));

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

            msg.setSubject(_subject);
            msg.setSentDate(new Date());

            // setup message body
            BodyPart messageBodyPart = new MimeBodyPart();
            messageBodyPart.setText(_body);
            _multipart.addBodyPart(messageBodyPart);

            // Put parts in message
            msg.setContent(_multipart);

            // send email
            Transport.send(msg);

            return true;
        } else {
            return false;
        }
    }

    @Override
    public PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication(_user, _pass);
    }

    private Properties _setProperties() {
        Properties props = new Properties();

        props.put("mail.smtp.host", _host);

        if (_debuggable) {
            props.put("mail.debug", "false");
        }

        if (_auth) {
            props.put("mail.smtp.auth", "true");
        }

        props.put("mail.smtp.port", _port);
        props.put("mail.smtp.socketFactory.port", _sport);
        props.put("mail.smtp.socketFactory.class",
                "javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.socketFactory.fallback", "false");

        return props;
    }

    // the getters and setters
    public String getBody() {
        return _body;
    }

    public void setBody(String _body) {
        this._body = _body;
    }

In the MainActivity.java:

mailSender sender = new mailSender("from@gmail.com","password");
        sender.setBody(prepareBody());
        try {

            if(sender.send()) { 
                    Toast.makeText(MainActivity.this, "Mail send", Toast.LENGTH_LONG).show();
                } else { 
                    Toast.makeText(MainActivity.this, "Mail not send", Toast.LENGTH_LONG).show();
                } 
} catch (Exception e) {
            Log.e("error", String.valueOf(e.getMessage()));
        }

I insert the INTERNET permission in manifest file and i ping correctly smtp.gmail.com, but the application generate this exception:

01-10 11:06:52.238: E/AndroidRuntime(2001): FATAL EXCEPTION: main
01-10 11:06:52.238: E/AndroidRuntime(2001): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.polito.gmail/com.polito.gmail.MainActivity}: java.lang.NullPointerException
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2185)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2210)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.ActivityThread.access$600(ActivityThread.java:142)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1208)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.os.Handler.dispatchMessage(Handler.java:99)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.os.Looper.loop(Looper.java:137)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.ActivityThread.main(ActivityThread.java:4931)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at java.lang.reflect.Method.invokeNative(Native Method)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at java.lang.reflect.Method.invoke(Method.java:511)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:558)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at dalvik.system.NativeStart.main(Native Method)
01-10 11:06:52.238: E/AndroidRuntime(2001): Caused by: java.lang.NullPointerException
01-10 11:06:52.238: E/AndroidRuntime(2001):     at com.polito.gmail.MainActivity.onCreate(MainActivity.java:48)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.Activity.performCreate(Activity.java:5008)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
01-10 11:06:52.238: E/AndroidRuntime(2001):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2139)
01-10 11:06:52.238: E/AndroidRuntime(2001):     ... 11 more

What is the problem?

  • 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-17T10:53:25+00:00Added an answer on June 17, 2026 at 10:53 am

    Your code seems correct, check if you’re receiving the mail or not. The exception occurs because there is no message relating to the exception. Try this to avoid the NullPointerException:

    Log.e("error", String.valueOf(e));
    

    Update:
    For better a logic regarding exception handling using javamail, follow this:

                try {
                    sender.send();
                   Toast.makeText(MainActivity.this, "Mail send", Toast.LENGTH_LONG).show();
                }
                catch (Exception e) {                   
    
                    if (e.toString().equals("java.lang.NullPointerException"))                      
                        Toast.makeText(MainActivity.this, "Mail not send: Mail settings not configured", Toast.LENGTH_LONG).show();
    
                    else if (e.toString().equals("javax.mail.AuthenticationFailedException"))                       
                        Toast.makeText(MainActivity.this, "Mail not send: Wrong Username or Password", Toast.LENGTH_LONG).show();
    
                    else if (e.toString().equals("Invalid Addresses"))                      
                        Toast.makeText(MainActivity.this, "Mail not send: Invalid Address(es)", Toast.LENGTH_LONG).show();
    
                    else
                        Toast.makeText(MainActivity.this, "Mail not send", Toast.LENGTH_LONG).show();                   
    
                    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
I have thousands of HTML files to process using Groovy/Java and I need to
I am trying to understand how to use SyndicationItem to display feed which is
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm trying to use string.replace('’','') to replace the dreaded weird single-quote character: ’ (aka
Basically, what I'm trying to create is a page of div tags, each has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am confused How to use looping for Json response Array in another Array.

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.