जावा का उपयोग कर ईमेल भेजें


112

मैं जावा का उपयोग कर एक ईमेल भेजने की कोशिश कर रहा हूं:

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SendEmail {

   public static void main(String [] args) {

      // Recipient's email ID needs to be mentioned.
      String to = "abcd@gmail.com";

      // Sender's email ID needs to be mentioned
      String from = "web@gmail.com";

      // Assuming you are sending email from localhost
      String host = "localhost";

      // Get system properties
      Properties properties = System.getProperties();

      // Setup mail server
      properties.setProperty("mail.smtp.host", host);

      // Get the default Session object.
      Session session = Session.getDefaultInstance(properties);

      try{
         // Create a default MimeMessage object.
         MimeMessage message = new MimeMessage(session);

         // Set From: header field of the header.
         message.setFrom(new InternetAddress(from));

         // Set To: header field of the header.
         message.addRecipient(Message.RecipientType.TO,
                                  new InternetAddress(to));

         // Set Subject: header field
         message.setSubject("This is the Subject Line!");

         // Now set the actual message
         message.setText("This is actual message");

         // Send message
         Transport.send(message);
         System.out.println("Sent message successfully....");
      }catch (MessagingException mex) {
         mex.printStackTrace();
      }
   }
}

मुझे त्रुटि मिल रही है:

javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;
  nested exception is:java.net.ConnectException: Connection refused: connect
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1706)
        at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:525)

क्या यह कोड ईमेल भेजने का काम करेगा?


11
क्या आप पोर्ट 25 पर एक ही मशीन पर एक SMTP सर्वर चला रहे हैं?
जेफ़

मैं आपके पते से अनुमान लगाने जा रहा हूं कि क्या आप जीमेल के माध्यम से रिले करने की कोशिश कर रहे हैं? अगर यह सच है तो मेरे पास कुछ कोड हो सकते हैं जिनका आप उपयोग कर सकते हैं। यहाँ एक संकेत है, आपको
पॉल ग्रेगोइरे

@Mondain यह उपयोगी हो सकता है यदि आप कुछ कोड पाँच कर सकते हैं। मैं gmail का उपयोग करके रिले करना चाहता हूं
मोहित बंसल

इसके नीचे मेरे जवाब में जुड़ा हुआ है, केवल पकड़ यह है कि यह जावामेल लाइब्रेरी का उपयोग नहीं करता है। अगर आप चाहें तो मैं आपको पूरा स्रोत भेज सकता हूं।
पॉल ग्रेगोइरे

जवाबों:


98

निम्न कोड Google SMTP सर्वर के साथ बहुत अच्छी तरह से काम करता है। आपको अपने Google उपयोगकर्ता नाम और पासवर्ड की आपूर्ति करने की आवश्यकता है।

import com.sun.mail.smtp.SMTPTransport;
import java.security.Security;
import java.util.Date;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

/**
 *
 * @author doraemon
 */
public class GoogleMail {
    private GoogleMail() {
    }

    /**
     * Send email using GMail SMTP server.
     *
     * @param username GMail username
     * @param password GMail password
     * @param recipientEmail TO recipient
     * @param title title of the message
     * @param message message to be sent
     * @throws AddressException if the email address parse failed
     * @throws MessagingException if the connection is dead or not in the connected state or if the message is not a MimeMessage
     */
    public static void Send(final String username, final String password, String recipientEmail, String title, String message) throws AddressException, MessagingException {
        GoogleMail.Send(username, password, recipientEmail, "", title, message);
    }

    /**
     * Send email using GMail SMTP server.
     *
     * @param username GMail username
     * @param password GMail password
     * @param recipientEmail TO recipient
     * @param ccEmail CC recipient. Can be empty if there is no CC recipient
     * @param title title of the message
     * @param message message to be sent
     * @throws AddressException if the email address parse failed
     * @throws MessagingException if the connection is dead or not in the connected state or if the message is not a MimeMessage
     */
    public static void Send(final String username, final String password, String recipientEmail, String ccEmail, String title, String message) throws AddressException, MessagingException {
        Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
        final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";

        // Get a Properties object
        Properties props = System.getProperties();
        props.setProperty("mail.smtps.host", "smtp.gmail.com");
        props.setProperty("mail.smtp.socketFactory.class", SSL_FACTORY);
        props.setProperty("mail.smtp.socketFactory.fallback", "false");
        props.setProperty("mail.smtp.port", "465");
        props.setProperty("mail.smtp.socketFactory.port", "465");
        props.setProperty("mail.smtps.auth", "true");

        /*
        If set to false, the QUIT command is sent and the connection is immediately closed. If set 
        to true (the default), causes the transport to wait for the response to the QUIT command.

        ref :   http://java.sun.com/products/javamail/javadocs/com/sun/mail/smtp/package-summary.html
                http://forum.java.sun.com/thread.jspa?threadID=5205249
                smtpsend.java - demo program from javamail
        */
        props.put("mail.smtps.quitwait", "false");

        Session session = Session.getInstance(props, null);

        // -- Create a new message --
        final MimeMessage msg = new MimeMessage(session);

        // -- Set the FROM and TO fields --
        msg.setFrom(new InternetAddress(username + "@gmail.com"));
        msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipientEmail, false));

        if (ccEmail.length() > 0) {
            msg.setRecipients(Message.RecipientType.CC, InternetAddress.parse(ccEmail, false));
        }

        msg.setSubject(title);
        msg.setText(message, "utf-8");
        msg.setSentDate(new Date());

        SMTPTransport t = (SMTPTransport)session.getTransport("smtps");

        t.connect("smtp.gmail.com", username, password);
        t.sendMessage(msg, msg.getAllRecipients());      
        t.close();
    }
}

अपडेट 11 दिसंबर 2015 को

उपयोगकर्ता नाम + पासवर्ड अब अनुशंसित समाधान नहीं है। इसका कारण है

मैंने यह कोशिश की और जीमेल ने इस कोड में उपयोगकर्ता नाम के रूप में उपयोग किए गए ईमेल को यह कहते हुए भेजा कि हमने हाल ही में आपके Google खाते में साइन-इन करने का प्रयास अवरुद्ध किया है, और मुझे इस सहायता पृष्ठ पर भेजा है: support.google.com/accounts/answer/6010255 इसलिए यह काम करने के लिए लगता है, अपनी सुरक्षा कम करने के लिए भेजने के लिए उपयोग किए जा रहे ईमेल खाते

Google ने Gmail API - https://developers.google.com/gmail/api/?hl=en जारी किया था । हमें उपयोगकर्ता नाम + पासवर्ड के बजाय oAuth2 पद्धति का उपयोग करना चाहिए।

जीमेल एपीआई के साथ काम करने के लिए यहां कोड स्निपेट है।

GoogleMail.java

import com.google.api.client.util.Base64;
import com.google.api.services.gmail.Gmail;
import com.google.api.services.gmail.model.Message;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Properties;

import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

/**
 *
 * @author doraemon
 */
public class GoogleMail {
    private GoogleMail() {
    }

    private static MimeMessage createEmail(String to, String cc, String from, String subject, String bodyText) throws MessagingException {
        Properties props = new Properties();
        Session session = Session.getDefaultInstance(props, null);

        MimeMessage email = new MimeMessage(session);
        InternetAddress tAddress = new InternetAddress(to);
        InternetAddress cAddress = cc.isEmpty() ? null : new InternetAddress(cc);
        InternetAddress fAddress = new InternetAddress(from);

        email.setFrom(fAddress);
        if (cAddress != null) {
            email.addRecipient(javax.mail.Message.RecipientType.CC, cAddress);
        }
        email.addRecipient(javax.mail.Message.RecipientType.TO, tAddress);
        email.setSubject(subject);
        email.setText(bodyText);
        return email;
    }

    private static Message createMessageWithEmail(MimeMessage email) throws MessagingException, IOException {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        email.writeTo(baos);
        String encodedEmail = Base64.encodeBase64URLSafeString(baos.toByteArray());
        Message message = new Message();
        message.setRaw(encodedEmail);
        return message;
    }

    public static void Send(Gmail service, String recipientEmail, String ccEmail, String fromEmail, String title, String message) throws IOException, MessagingException {
        Message m = createMessageWithEmail(createEmail(recipientEmail, ccEmail, fromEmail, title, message));
        service.users().messages().send("me", m).execute();
    }
}

OAuth2 के माध्यम से अधिकृत जीमेल सेवा का निर्माण करने के लिए, यहाँ कोड स्निपेट है।

Utils.java

import com.google.api.client.auth.oauth2.Credential;
import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver;
import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow;
import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets;
import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.json.gson.GsonFactory;
import com.google.api.client.util.store.FileDataStoreFactory;
import com.google.api.services.gmail.Gmail;
import com.google.api.services.gmail.GmailScopes;
import com.google.api.services.oauth2.Oauth2;
import com.google.api.services.oauth2.model.Userinfoplus;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.GeneralSecurityException;
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.yccheok.jstock.engine.Pair;

/**
 *
 * @author yccheok
 */
public class Utils {
    /** Global instance of the JSON factory. */
    private static final GsonFactory JSON_FACTORY = GsonFactory.getDefaultInstance();

    /** Global instance of the HTTP transport. */
    private static HttpTransport httpTransport;

    private static final Log log = LogFactory.getLog(Utils.class);

    static {
        try {
            // initialize the transport
            httpTransport = GoogleNetHttpTransport.newTrustedTransport();

        } catch (IOException ex) {
            log.error(null, ex);
        } catch (GeneralSecurityException ex) {
            log.error(null, ex);
        }
    }

    private static File getGmailDataDirectory() {
        return new File(org.yccheok.jstock.gui.Utils.getUserDataDirectory() + "authentication" + File.separator + "gmail");
    }

    /**
     * Send a request to the UserInfo API to retrieve the user's information.
     *
     * @param credentials OAuth 2.0 credentials to authorize the request.
     * @return User's information.
     * @throws java.io.IOException
     */
    public static Userinfoplus getUserInfo(Credential credentials) throws IOException
    {
        Oauth2 userInfoService =
            new Oauth2.Builder(httpTransport, JSON_FACTORY, credentials).setApplicationName("JStock").build();
        Userinfoplus userInfo  = userInfoService.userinfo().get().execute();
        return userInfo;
    }

    public static String loadEmail(File dataStoreDirectory)  {
        File file = new File(dataStoreDirectory, "email");
        try {
            return new String(Files.readAllBytes(Paths.get(file.toURI())), "UTF-8");
        } catch (IOException ex) {
            log.error(null, ex);
            return null;
        }
    }

    public static boolean saveEmail(File dataStoreDirectory, String email) {
        File file = new File(dataStoreDirectory, "email");
        try {
            //If the constructor throws an exception, the finally block will NOT execute
            BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "UTF-8"));
            try {
                writer.write(email);
            } finally {
                writer.close();
            }
            return true;
        } catch (IOException ex){
            log.error(null, ex);
            return false;
        }
    }

    public static void logoutGmail() {
        File credential = new File(getGmailDataDirectory(), "StoredCredential");
        File email = new File(getGmailDataDirectory(), "email");
        credential.delete();
        email.delete();
    }

    public static Pair<Pair<Credential, String>, Boolean> authorizeGmail() throws Exception {
        // Ask for only the permissions you need. Asking for more permissions will
        // reduce the number of users who finish the process for giving you access
        // to their accounts. It will also increase the amount of effort you will
        // have to spend explaining to users what you are doing with their data.
        // Here we are listing all of the available scopes. You should remove scopes
        // that you are not actually using.
        Set<String> scopes = new HashSet<>();

        // We would like to display what email this credential associated to.
        scopes.add("email");

        scopes.add(GmailScopes.GMAIL_SEND);

        // load client secrets
        GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(Utils.JSON_FACTORY,
            new InputStreamReader(Utils.class.getResourceAsStream("/assets/authentication/gmail/client_secrets.json")));

        return authorize(clientSecrets, scopes, getGmailDataDirectory());
    }

    /** Authorizes the installed application to access user's protected data.
     * @return 
     * @throws java.lang.Exception */
    private static Pair<Pair<Credential, String>, Boolean> authorize(GoogleClientSecrets clientSecrets, Set<String> scopes, File dataStoreDirectory) throws Exception {
        // Set up authorization code flow.

        GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
            httpTransport, JSON_FACTORY, clientSecrets, scopes)
            .setDataStoreFactory(new FileDataStoreFactory(dataStoreDirectory))
            .build();
        // authorize
        return new MyAuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");
    }

    public static Gmail getGmail(Credential credential) {
        Gmail service = new Gmail.Builder(httpTransport, JSON_FACTORY, credential).setApplicationName("JStock").build();
        return service;        
    }
}

निम्नलिखित इनपुट संवाद को प्रदर्शित करने के लिए, मैंने oAuth2 प्रमाणीकरण का एक उपयोगकर्ता के अनुकूल तरीका प्रदान करने के लिए, मैंने JavaFX का उपयोग किया

यहां छवि विवरण दर्ज करें

उपयोगकर्ता के अनुकूल oAuth2 संवाद प्रदर्शित करने की कुंजी MyAuthorizationCodeInstalledApp.java और SimpleSwingBrowser.java में देखी जा सकती है


त्रुटि प्राप्त करना: थ्रेड में अपवाद "मुख्य" javax.mail.MessagingException: SMTP होस्ट से कनेक्ट नहीं हो सका: smtp.gmail.com, port: 465; नेस्टेड अपवाद है: java.net.ConnectException: कनेक्शन टाइम आउट: कनेक्ट ऑन com.sun.mail.smtp.SMTPTransport.openServer (SMTPTransport.java:1706)
मोहित बंसल

1
यदि आप smtp.gmail.com को पिंग करते हैं, तो क्या आपको कोई प्रतिक्रिया मिलती है?
चोक यान चेंग सेप

जैसा कि मैंने कहा कि इससे पहले कि मैं STMP के लिए नया हूँ और मैं नहीं जानता कि कैसे smtp.gmail.com को पिंग करना है।
मोहित बंसल

2
अपने कमांड प्रॉम्प्ट में, 'ping smtp.gmail.com' टाइप करें और एंटर दबाएँ।
चोक यान चेंग सेप

12
मुझे पसंद नहीं है कि Sendइसके बजाय तरीकों को बुलाया जाता है, sendलेकिन यह एक उपयोगी वर्ग है। कोड में gmail पासवर्ड को संग्रहीत करने के सुरक्षा निहितार्थ के बारे में कोई विचार?
साइमन फोर्सबर्ग

48

निम्नलिखित कोड ने मेरे लिए काम किया।

import java.io.UnsupportedEncodingException;
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.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;


public class SendMail {

    public static void main(String[] args) {

        final String username = "your_user_name@gmail.com";
        final String password = "yourpassword";

        Properties props = new Properties();
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.host", "smtp.gmail.com");
        props.put("mail.smtp.port", "587");

        Session session = Session.getInstance(props,
          new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(username, password);
            }
          });

        try {

            Message message = new MimeMessage(session);
            message.setFrom(new InternetAddress("your_user_name@gmail.com"));
            message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse("to_email_address@domain.com"));
            message.setSubject("Testing Subject");
            message.setText("Dear Mail Crawler,"
                + "\n\n No spam to my email, please!");

            Transport.send(message);

            System.out.println("Done");

        } catch (MessagingException e) {
            throw new RuntimeException(e);
        }
    }
}

1
अक्षम 2 कारक प्रमाणीकरण वाले खाते पर काम किया गया। यह समाधान बहुत अच्छा है क्योंकि यह स्थानीय है और सूरज के पैकेज की आवश्यकता नहीं है।
एलिकएल्ज़िन-किलाका

इस कोड का उपयोग करने के लिए, जीमेल अकाउंट होना चाहिए?
इरिक

3
कोड मेरे लिए काम किया, लेकिन पहले मैं ऐसा करने की जरूरत है इस और "कम सुरक्षित ऐप्स की एक्सेस" चालू

@ user4966430 सहमत! और धन्यवाद!
रायकुमारदीपक

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

import javax.mail.Message;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;


public class SendEmail extends Object{

public static void main(String [] args)
{

    try{

        Properties props = new Properties();
        props.put("mail.smtp.host", "smtp.mail.yahoo.com"); // for gmail use smtp.gmail.com
        props.put("mail.smtp.auth", "true");
        props.put("mail.debug", "true"); 
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.port", "465");
        props.put("mail.smtp.socketFactory.port", "465");
        props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.socketFactory.fallback", "false");

        Session mailSession = Session.getInstance(props, new javax.mail.Authenticator() {

            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("username@yahoo.com", "password");
            }
        });

        mailSession.setDebug(true); // Enable the debug mode

        Message msg = new MimeMessage( mailSession );

        //--[ Set the FROM, TO, DATE and SUBJECT fields
        msg.setFrom( new InternetAddress( "fromusername@yahoo.com" ) );
        msg.setRecipients( Message.RecipientType.TO,InternetAddress.parse("tousername@gmail.com") );
        msg.setSentDate( new Date());
        msg.setSubject( "Hello World!" );

        //--[ Create the body of the mail
        msg.setText( "Hello from my first e-mail sent with JavaMail" );

        //--[ Ask the Transport class to send our mail message
        Transport.send( msg );

    }catch(Exception E){
        System.out.println( "Oops something has gone pearshaped!");
        System.out.println( E );
    }
}
}

आवश्यक जार फाइलें

यहां क्लिक करें - बाहरी जार कैसे जोड़ें


11

संक्षिप्त उत्तर - नहीं।

लंबे उत्तर - नहीं, चूंकि कोड स्थानीय मशीन पर चल रहे एसएमटीपी सर्वर की उपस्थिति पर निर्भर करता है, और पोर्ट 25 पर सुन रहा है। एसएमटीपी सर्वर (तकनीकी रूप से एमटीए या मेल ट्रांसफर एजेंट) मेल उपयोगकर्ता एजेंट के साथ संवाद करने के लिए जिम्मेदार है। (MUA, जो इस मामले में जावा प्रक्रिया है) आउटगोइंग ईमेल प्राप्त करने के लिए।

अब, एमटीए आमतौर पर एक विशेष डोमेन के लिए उपयोगकर्ताओं से मेल प्राप्त करने के लिए जिम्मेदार हैं। इसलिए, डोमेन gmail.com के लिए, यह Google मेल सर्वर होगा जो मेल उपयोगकर्ता एजेंटों को प्रमाणित करने के लिए जिम्मेदार होता है और इसलिए मेलों को GMail सर्वरों पर इनबॉक्स में स्थानांतरित करता है। मुझे यकीन नहीं है कि अगर GMail मेल रिले सर्वरों पर भरोसा करता है, लेकिन Google की ओर से प्रमाणीकरण करना निश्चित रूप से आसान काम नहीं है, और फिर GMail सर्वरों को मेल रिले करें।

यदि आप GMail का उपयोग करने के लिए JavaMail का उपयोग करने पर JavaMail FAQ पढ़ते हैं , तो आप देखेंगे कि होस्टनाम और पोर्ट GMail सर्वर की ओर इशारा करते हैं, और निश्चित रूप से स्थानीयहोस्ट के लिए नहीं। यदि आप अपनी स्थानीय मशीन का उपयोग करने का इरादा रखते हैं, तो आपको रिले या फॉरवर्ड करने की आवश्यकता होगी।

यदि आप एसएमटीपी के लिए कहीं भी आने का इरादा रखते हैं, तो आपको एसएमटीपी प्रोटोकॉल को गहराई से समझना होगा। आप SMTP पर विकिपीडिया लेख के साथ शुरू कर सकते हैं , लेकिन किसी भी आगे की प्रगति वास्तव में SMTP सर्वर के खिलाफ प्रोग्रामिंग की आवश्यकता होगी।


क्या मैं अपने SMTP सर्वर के रूप में Tomcat का उपयोग कर सकता हूं? उसी के बारे में मदद की सराहना की जाएगी। :)
CᴴᴀZ

3
@ChaZ से आपको क्या विचार आया कि Tomcat एक SMTP सर्वर होगा?
eis

6

आपको मेल भेजने के लिए SMTP सर्वर की आवश्यकता है। ऐसे सर्वर हैं जिन्हें आप स्थानीय रूप से अपने पीसी पर स्थापित कर सकते हैं, या आप कई ऑनलाइन सर्वरों में से एक का उपयोग कर सकते हैं। अधिक ज्ञात सर्वरों में से एक Google है:

मैं सिर्फ सफलतापूर्वक की अनुमति का परीक्षण किया गूगल एसएमटीपी विन्यास से पहला उदाहरण का उपयोग करते हुए सरल जावा मेल :

    final Email email = EmailBuilder.startingBlank()
        .from("lollypop", "lol.pop@somemail.com")
        .to("C.Cane", "candycane@candyshop.org")
        .withPlainText("We should meet up!")
        .withHTMLText("<b>We should meet up!</b>")
        .withSubject("hey");

    // starting 5.0.0 do the following using the MailerBuilder instead...
    new Mailer("smtp.gmail.com", 25, "your user", "your password", TransportStrategy.SMTP_TLS).sendMail(email);
    new Mailer("smtp.gmail.com", 587, "your user", "your password", TransportStrategy.SMTP_TLS).sendMail(email);
    new Mailer("smtp.gmail.com", 465, "your user", "your password", TransportStrategy.SMTP_SSL).sendMail(email);

विभिन्न बंदरगाहों और परिवहन रणनीतियों पर ध्यान दें (जो आपके लिए सभी आवश्यक गुणों को संभालती हैं)।

उत्सुकता से, Google को पोर्ट 25 पर भी टीएलएस की आवश्यकता होती है, भले ही Google के निर्देश अन्यथा न कहें


1
जैसा कि नाम बताता है,
काई वांग

4

इस पोस्ट किए हुए काफी समय हो चुका है। लेकिन 13 नवंबर, 2012 तक मैं यह सत्यापित कर सकता हूं कि पोर्ट 465 अभी भी काम कर रहा है।

इस मंच पर गैरीएम के जवाब का संदर्भ लें । मुझे उम्मीद है कि इससे कुछ और लोगों को मदद मिलेगी।

/*
* Created on Feb 21, 2005
*
*/

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 GoogleTest {

    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 = "";
    private static final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
    private static final String[] sendTo = { "" };


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

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

        new GoogleTest().sendSSLMessage(sendTo, emailSubjectTxt,
            emailMsgTxt, emailFromAddress);
        System.out.println("Sucessfully 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("xxxxxx", "xxxxxx");
            }
        });

        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);
        }
        msg.setRecipients(Message.RecipientType.TO, addressTo);

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

1
हालांकि यह लिंक प्रश्न का उत्तर दे सकता है, लेकिन उत्तर के आवश्यक भागों को शामिल करना और संदर्भ के लिए लिंक प्रदान करना बेहतर है। लिंक-केवल उत्तर अमान्य हो सकते हैं यदि लिंक किए गए पृष्ठ बदल जाते हैं। - समीक्षा से
स्विफ्टबॉय

1
पोस्ट से उत्तर जोड़ा गया।
मुकुस

1
@ मुख्तार जीत !! जो भविष्य में किसी की मदद करेगा।
स्विफ्टबॉय

3

निम्न कोड बहुत अच्छी तरह से काम करता है। javamail-1.4.5.jar के साथ एक जावा अनुप्रयोग के रूप में इसे लें

import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;

public class MailSender
{
    final String senderEmailID = "typesendermailid@gmail.com";
    final String senderPassword = "typesenderpassword";
    final String emailSMTPserver = "smtp.gmail.com";
    final String emailServerPort = "465";
    String receiverEmailID = null;
    static String emailSubject = "Test Mail";
    static String emailBody = ":)";

    public MailSender(
            String receiverEmailID,
            String emailSubject,
            String emailBody
    ) {
        this.receiverEmailID=receiverEmailID;
        this.emailSubject=emailSubject;
        this.emailBody=emailBody;
        Properties props = new Properties();
        props.put("mail.smtp.user",senderEmailID);
        props.put("mail.smtp.host", emailSMTPserver);
        props.put("mail.smtp.port", emailServerPort);
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.socketFactory.port", emailServerPort);
        props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.socketFactory.fallback", "false");
        SecurityManager security = System.getSecurityManager();
        try {
            Authenticator auth = new SMTPAuthenticator();
            Session session = Session.getInstance(props, auth);
            MimeMessage msg = new MimeMessage(session);
            msg.setText(emailBody);
            msg.setSubject(emailSubject);
            msg.setFrom(new InternetAddress(senderEmailID));
            msg.addRecipient(Message.RecipientType.TO,
                    new InternetAddress(receiverEmailID));
            Transport.send(msg);
            System.out.println("Message send Successfully:)");
        }
        catch (Exception mex)
        {
            mex.printStackTrace();
        }
    }

    public class SMTPAuthenticator extends javax.mail.Authenticator
    {
        public PasswordAuthentication getPasswordAuthentication()
        {
            return new PasswordAuthentication(senderEmailID, senderPassword);
        }
    }

    public static void main(String[] args)
    {
        MailSender mailSender=new
            MailSender("typereceivermailid@gmail.com",emailSubject,emailBody);
    }
}

2

क्या यह कोड ईमेल भेजने का काम करेगा?

ठीक है, नहीं, कुछ भागों को बदलने के बिना नहीं जब से आप एक त्रुटि प्राप्त कर रहे हैं। वर्तमान में आप लोकलहोस्ट पर चल रहे SMTP सर्वर के माध्यम से मेल भेजने की कोशिश कर रहे हैं, लेकिन आप ऐसा नहीं कर रहे हैं ConnectException

कोड मान लेना ठीक है (मैंने वास्तव में जांच नहीं की थी), आपको या तो एक स्थानीय एसएमटीपी सर्वर चलाना होगा, या (आईएसपी से) एक (दूरस्थ) एक का उपयोग करना होगा।

कोड के बारे में, आप अक्सर पूछे जाने वाले प्रश्न के अनुसार JavaMail डाउनलोड पैकेज में नमूने पा सकते हैं :

मुझे कुछ उदाहरण कार्यक्रम कहां मिलेंगे जो दिखाते हैं कि जावामेल का उपयोग कैसे किया जाता है?

प्रश्न: मुझे कुछ उदाहरण कार्यक्रम कहां मिलेंगे जो दिखाते हैं कि जावामेल का उपयोग कैसे करें?
A: JavaMail डाउनलोड पैकेज में कई उदाहरण कार्यक्रम शामिल हैं , जिनमें सरल कमांड लाइन प्रोग्राम शामिल हैं, जो JavaMail API, स्विंग-आधारित GUI एप्लिकेशन, एक साधारण सर्वलेट-आधारित एप्लिकेशन, और एक पूर्ण वेब एप्लिकेशन का उपयोग करते हुए PSP पृष्ठों और एक टैग लाइब्रेरी।


नमस्ते, वास्तव में एक smtp सर्वर क्या है? क्या यह शामिल है और ईमेल सर्वर में बंडल है? या हमें अलग से smtp सेटअप करना होगा?
GMsoF

dovecot एक SMTP सर्वर है। अपने आप को इस प्रश्न पूछें: क्या सॉफ्टवेयर गूगल रन है कि आप इस ई-मेल भेज रहे हैं करता है करने के लिए ? वे किसी प्रकार का smtp सर्वर चला रहे हैं। डवकोट अच्छा है; dovecot और postfix एक साथ बेहतर है। मुझे लगता है कि पोस्टफिक्स smtp हिस्सा है और imap भाग को डाइव करता है।
थुफ़ीर

2

इसे आज़माएं। ये मेरे लिए अच्छी तरह से काम करता है। सुनिश्चित करें कि ईमेल भेजने से पहले अपने gmail अकाउंट में कम सुरक्षित ऐप के लिए एक्सेस देने की आवश्यकता है। तो निम्न लिंक पर जाएं और इस जावा कोड के साथ प्रयास करें।
कम सुरक्षित ऐप के लिए जीमेल को सक्रिय करें

आपको अपने प्रोजेक्ट के लिए javax.mail.jar फ़ाइल और सक्रियण .jar फ़ाइल आयात करने की आवश्यकता है।

यह जावा में ईमेल भेजने का पूर्ण कोड है

import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;

public class SendEmail {

    final String senderEmail = "your email address";
    final String senderPassword = "your password";
    final String emailSMTPserver = "smtp.gmail.com";
    final String emailServerPort = "587";
    String receiverEmail = null;
    String emailSubject = null;
    String emailBody = null;

    public SendEmail(String receiverEmail, String Subject, String message) {
        this.receiverEmail = receiverEmail;
        this.emailSubject = Subject;
        this.emailBody = message;

        Properties props = new Properties();
        props.put("mail.smtp.user", senderEmail);
        props.put("mail.smtp.host", emailSMTPserver);
        props.put("mail.smtp.port", emailServerPort);
        props.put("mail.smtp.starttls.enable", "true");
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.socketFactory.port", emailServerPort);
        props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");

        SecurityManager security = System.getSecurityManager();

        try {
            Authenticator auth = new SMTPAuthenticator();
            Session session = Session.getInstance(props, auth);

            Message msg = new MimeMessage(session);
            msg.setText(emailBody);
            msg.setSubject(emailSubject);
            msg.setFrom(new InternetAddress(senderEmail));
            msg.addRecipient(Message.RecipientType.TO,
                    new InternetAddress(receiverEmail));
            Transport.send(msg);
            System.out.println("send successfully");
        } catch (Exception ex) {
            System.err.println("Error occurred while sending.!");
        }

    }

    private class SMTPAuthenticator extends javax.mail.Authenticator {

        public PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication(senderEmail, senderPassword);
        }
    }

    public static void main(String[] args) {
        SendEmail send = new SendEmail("receiver email address", "subject", "message");
    }

}

2

यहाँ काम कर समाधान भाई है। यह गुरंटेड है।

  1. सबसे पहले आप अपना जीमेल अकाउंट खोलें जिसमें से आप मेल भेजना चाहते थे, जैसे आप चाहते हैं xyz@gmail.com
  2. इस लिंक को नीचे खोलें:

    https://support.google.com/accounts/answer/6010255?hl=en

  3. "मेरे खाते में" कम सुरक्षित ऐप्स "अनुभाग पर जाएं।" विकल्प
  4. फिर इसे चालू करें
  5. बस (:

यहाँ मेरा कोड है:

import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;

public class SendEmail {

   final String senderEmailID = "Sender Email id";
final String senderPassword = "Sender Pass word";
final String emailSMTPserver = "smtp.gmail.com";
final String emailServerPort = "465";
String receiverEmailID = null;
static String emailSubject = "Test Mail";
static String emailBody = ":)";
public SendEmail(String receiverEmailID, String emailSubject, String emailBody)
{
this.receiverEmailID=receiverEmailID;
this.emailSubject=emailSubject;
this.emailBody=emailBody;
Properties props = new Properties();
props.put("mail.smtp.user",senderEmailID);
props.put("mail.smtp.host", emailSMTPserver);
props.put("mail.smtp.port", emailServerPort);
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.socketFactory.port", emailServerPort);
props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "false");
SecurityManager security = System.getSecurityManager();
try
{
Authenticator auth = new SMTPAuthenticator();
Session session = Session.getInstance(props, auth);
MimeMessage msg = new MimeMessage(session);
msg.setText(emailBody);
msg.setSubject(emailSubject);
msg.setFrom(new InternetAddress(senderEmailID));
msg.addRecipient(Message.RecipientType.TO,
new InternetAddress(receiverEmailID));
Transport.send(msg);
System.out.println("Message send Successfully:)");
}
catch (Exception mex)
{
mex.printStackTrace();
}
}
public class SMTPAuthenticator extends javax.mail.Authenticator
{
public PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication(senderEmailID, senderPassword);
}
}
    public static void main(String[] args) {
       SendEmail mailSender;
        mailSender = new SendEmail("Receiver Email id","Testing Code 2 example","Testing Code Body yess");
    }

}

धन्यवाद! यह मेरे लिए काम किया! मैं अपने खाते में "कम सुरक्षित ऐप्स" पर गया था। विकल्प और MyApp का उपयोग करने के लिए एक पासवर्ड उत्पन्न किया।
raikumardipak

1

मैंने अपनी समीक्षा के लिए अपने कामकाजी जीमेल जावा वर्ग को पास्तिबिन पर रखा है, "startSessionWithTLS" विधि पर विशेष ध्यान दें और आप उसी कार्यक्षमता प्रदान करने के लिए जावामेल को समायोजित करने में सक्षम हो सकते हैं। http://pastebin.com/VE8Mqkqp


शायद आप अपने उत्तर में थोड़ा और भी प्रदान कर सकते हैं?
अंती हापाला

1

आपका कोड SMTP सर्वर के साथ कनेक्शन स्थापित करने के अलावा काम करता है। आपको आपके लिए ईमेल भेजने के लिए एक रनिंग मेल (SMTP) सर्वर की आवश्यकता होती है।

यहाँ आपका संशोधित कोड है। मैंने उन हिस्सों पर टिप्पणी की, जिनकी आवश्यकता नहीं है और सत्र निर्माण को बदल दिया है इसलिए यह एक प्रमाणक लेता है। अब बस SMPT_HOSTNAME, USERNAME और PASSWORD का उपयोग करें जिन्हें आप उपयोग करना चाहते हैं (आपका इंटरनेट प्रदाता आमतौर पर उन्हें प्रदान करता है)।

मैं हमेशा इसे इस तरह से करता हूं (एक दूरस्थ एसएमटीपी सर्वर का उपयोग करके) मुझे पता है क्योंकि स्थानीय मेलस्वर को चलाना विंडोज के तहत यह तुच्छ नहीं है (यह स्पष्ट रूप से लिनक्स के तहत काफी आसान है)।

import java.util.*;

import javax.mail.*;
import javax.mail.internet.*;

//import javax.activation.*;

public class SendEmail {

    private static String SMPT_HOSTNAME = "";
    private static String USERNAME = "";
    private static String PASSWORD = "";

    public static void main(String[] args) {

        // Recipient's email ID needs to be mentioned.
        String to = "abcd@gmail.com";

        // Sender's email ID needs to be mentioned
        String from = "web@gmail.com";

        // Assuming you are sending email from localhost
        // String host = "localhost";

        // Get system properties
        Properties properties = System.getProperties();

        // Setup mail server
        properties.setProperty("mail.smtp.host", SMPT_HOSTNAME);

        // Get the default Session object.
        // Session session = Session.getDefaultInstance(properties);

        // create a session with an Authenticator
        Session session = Session.getInstance(properties, new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(USERNAME, PASSWORD);
            }
        });

        try {
            // Create a default MimeMessage object.
            MimeMessage message = new MimeMessage(session);

            // Set From: header field of the header.
            message.setFrom(new InternetAddress(from));

            // Set To: header field of the header.
            message.addRecipient(Message.RecipientType.TO, new InternetAddress(
                    to));

            // Set Subject: header field
            message.setSubject("This is the Subject Line!");

            // Now set the actual message
            message.setText("This is actual message");

            // Send message
            Transport.send(message);
            System.out.println("Sent message successfully....");
        } catch (MessagingException mex) {
            mex.printStackTrace();
        }
    }
}

1

वास्तव में 465 काम करता है और जो अपवाद आपको मिल रहा है, वह खुले SMTP पोर्ट 25 के कारण हो सकता है। डिफ़ॉल्ट रूप से पोर्ट संख्या 25 है। फिर भी आप इसे ओपन एजेंट के रूप में उपलब्ध मेल एजेंट का उपयोग करके कॉन्फ़िगर कर सकते हैं - मरकरी

सादगी के लिए, बस निम्नलिखित कॉन्फ़िगरेशन का उपयोग करें और आप ठीक हो जाएंगे।

// Setup your mail server
props.put("mail.smtp.host", SMTP_HOST); 
props.put("mail.smtp.user",FROM_NAME);
props.put("mail.smtp.ssl.enable", "true");
props.put("mail.smtp.port", "25");
props.put("mail.debug", "true");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.EnableSSL.enable","true");
props.setProperty("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");  
props.setProperty("mail.smtp.socketFactory.fallback", "false");  
props.setProperty("mail.smtp.port", "465");  
props.setProperty("mail.smtp.socketFactory.port", "465");

और भी अधिक के लिए: यहां खरोंच से पूरा काम करने का उदाहरण देखें


1

मुझे वही अपवाद मिला जो आपको मिला। इसका कारण आपकी मशीन में smpt सर्वर का नहीं होना और चलना (चूंकि आपका होस्ट लोकलहोस्ट है)। यदि आप विंडोज 7 का उपयोग करते हैं तो इसमें एसएमटीपी सर्वर नहीं है। इसलिए आपको डोमेन के साथ डाउनलोड करने, इंस्टॉल करने और कॉन्फ़िगर करने और खाते बनाने होंगे। मैंने अपने स्थानीय मशीन में smtp सर्वर स्थापित और कॉन्फ़िगर के रूप में उपयोग किया। https://www.hmailserver.com/download


-2

आप यहां Google (जीमेल) खाते का उपयोग करके ईमेल भेजने के लिए एक पूर्ण और बहुत ही सरल जावा वर्ग पा सकते हैं,

जावा और Google खाते का उपयोग करके ईमेल भेजें

यह निम्नलिखित गुणों का उपयोग करता है

Properties props = new Properties();
  props.put("mail.smtp.auth", "true");
  props.put("mail.smtp.starttls.enable", "true");
  props.put("mail.smtp.host", "smtp.gmail.com");
  props.put("mail.smtp.port", "587");

1
ध्यान दें कि SO पर केवल लिंक उत्तर हतोत्साहित किए जाते हैं। उत्तर में ही उत्तर को शामिल करना बेहतर है।
laalto
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.