জাভা ব্যবহার করে ইমেল প্রেরণ করুন


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 এ একই মেশিনে একটি এসএমটিপি সার্ভার শুনছেন?
জেফ

আমি আপনার ঠিকানাগুলি ধরে নিয়ে যাচ্ছি যে আপনি জিমেইলের মাধ্যমে রিলে চেষ্টা করছেন? যদি এটি সত্য হয় তবে আমার কাছে কিছু কোড থাকতে পারে যা আপনি ব্যবহার করতে পারেন। এখানে একটি ইঙ্গিতটি আপনি TLS এর প্রয়োজন আছে,
পল Gregoire

@ সোমদিন আপনি কিছু কোড পাঁচটি করতে পারলে এটি সহায়ক হবে। আমি জিমেইল ব্যবহার করে রিলে যেতে চাই
মোহিত বানসাল

এটি নীচে আমার উত্তরে লিঙ্ক হয়েছে, কেবল ধরা এটিই জাভামেল লাইব্রেরি ব্যবহার করে না। আপনি চাইলে আমি আপনাকে পুরো উত্সটি পাঠাতে পারি।
পল গ্রেগোয়ার

উত্তর:


98

গুগল এসএমটিপি সার্ভারের সাথে নিম্নলিখিত কোডটি খুব ভালভাবে কাজ করে। আপনাকে আপনার গুগল নাম এবং পাসওয়ার্ড সরবরাহ করতে হবে।

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-এ আপডেট

ব্যবহারকারীর নাম + পাসওয়ার্ড আর প্রস্তাবিত সমাধান নয়। এই কারনে

আমি এটি চেষ্টা করেছি এবং জিমেইল এই কোডটিতে ব্যবহারকারীর নাম হিসাবে ব্যবহৃত ইমেলটি একটি ইমেল প্রেরণ করেছে যা আমরা সম্প্রতি আপনার গুগল অ্যাকাউন্টে সাইন-ইন প্রচেষ্টা আটকে রেখেছি এবং আমাকে এই সমর্থন পৃষ্ঠায় পরিচালিত করেছি: support.google.com/accounts/answer/6010255 সুতরাং এটি কাজ করে দেখায়, ইমেল অ্যাকাউন্টটি প্রেরণের জন্য ব্যবহৃত হচ্ছে তাদের নিজস্ব সুরক্ষা হ্রাস করতে হবে

গুগল জিপিএল এপিআই প্রকাশ করেছে - https://developers.google.com/gmail/api/?hl=en । আমাদের ব্যবহারকারীর নাম + পাসওয়ার্ডের পরিবর্তে oAuth2 পদ্ধতি ব্যবহার করা উচিত।

Gmail এপিআইয়ের সাথে কাজ করার জন্য কোড স্নিপেট এখানে।

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;        
    }
}

ওআউথ 2 প্রমাণীকরণের জন্য কোনও ব্যবহারকারী বান্ধব উপায় সরবরাহ করতে, নিম্নলিখিত ইনপুট ডায়ালগটি প্রদর্শন করতে আমি জাভাএফএক্স ব্যবহার করেছি

এখানে চিত্র বর্ণনা লিখুন

ব্যবহারকারী বান্ধব oAuth2 ডায়ালগটি প্রদর্শনের কীটি MyAuthorizationCodeInstalledApp.java এবং সিম্পলসুইংব্রাউজার.জভাতে পাওয়া যাবে


ত্রুটি পাওয়ার ক্ষেত্রে: "মূল" javax.mail. ম্যাসেজিংএক্সেপশন থ্রেডের ব্যতিক্রম: এসএমটিপি হোস্টের সাথে সংযোগ করতে পারেনি: smtp.gmail.com, পোর্ট: 465; নেস্টেড ব্যতিক্রমটি হ'ল: java.net.ConnectException: সংযোগের সময়সীমা শেষ হয়েছে: com.sun.mail.smtp.SMtTransport.openServer (এসএমটিপিট্রান্সপোর্ট.জভা اصول706)
মোহিত বানসাল

1
আপনি যদি smtp.gmail.com পিং করেন, আপনি কি কোনও প্রতিক্রিয়া পাবেন?
চেওক ইয়ান চেং

যেমনটি আমি বলেছিলাম যে আমি এসটিএমপি-তে নতুন হওয়ার আগে এবং আমি কীভাবে smtp.gmail.com পিং করতে জানি না।
মোহিত বানসাল

2
আপনার কমান্ড প্রম্পটে, 'পিং smtp.gmail.com' টাইপ করুন এবং এন্টার টিপুন।
চেওক ইয়ান চেং

12
আমি পছন্দ করি না যে পদ্ধতিগুলি Sendপরিবর্তে বলা হয় sendতবে এটি একটি দরকারী শ্রেণি। কোডটিতে জিমেইল পাসওয়ার্ড সংরক্ষণের সুরক্ষা সম্পর্কিত কোনও ধারণা?
সাইমন ফোর্সবার্গ

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
কোড আমার জন্য কাজ কিন্তু প্রথম আমি কি করতে প্রয়োজন এই এবং "কম সুরক্ষিত অ্যাপ্লিকেশানের জন্য অ্যাক্সেস" চালু

@ ব্যবহারকারী 4966430 সম্মত! এবং ধন্যবাদ!
রাইকুমারদীপক

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 শুনছে। এসএমটিপি সার্ভার (প্রযুক্তিগতভাবে এমটিএ বা মেল স্থানান্তর এজেন্ট) মেল ব্যবহারকারী এজেন্টের সাথে যোগাযোগের জন্য দায়বদ্ধ is (এমইউএ, যা এই ক্ষেত্রে জাভা প্রক্রিয়া) বহির্গামী ইমেলগুলি গ্রহণ করতে।

এখন, এমটিএগুলি সাধারণত কোনও নির্দিষ্ট ডোমেনের জন্য ব্যবহারকারীদের থেকে মেল পাওয়ার জন্য দায়বদ্ধ। সুতরাং, ডোমেইন gmail.com এর জন্য এটি হ'ল গুগল মেল সার্ভারগুলি মেল ব্যবহারকারী এজেন্টদের সত্যায়িত করার জন্য এবং তাই GMail সার্ভারগুলিতে মেলগুলি ইনবক্সগুলিতে স্থানান্তর করার জন্য দায়বদ্ধ। আমি নিশ্চিত নই যে GMail ওপেন মেল রিলে সার্ভারগুলিতে বিশ্বাস করে, তবে অবশ্যই গুগলের পক্ষ থেকে প্রমাণীকরণ সম্পাদন করা এবং তারপরে জিমেইল সার্ভারগুলিতে মেল রিলে করা সহজ কাজ নয়।

আপনি যদি জিমেইল অ্যাক্সেস করার জন্য জাভামেল ব্যবহার করার বিষয়ে জাভামেল এফএকিউ পড়েন তবে আপনি লক্ষ্য করবেন যে হোস্টনাম এবং পোর্টটি জিমেইল সার্ভারগুলিতে নির্দেশ করছে এবং অবশ্যই লোকালহোস্টের দিকে নয়। আপনি যদি নিজের স্থানীয় মেশিনটি ব্যবহার করতে চান তবে আপনাকে রিলে বা ফরোয়ার্ডিং করতে হবে।

আপনি যদি এসএমটিপি-তে আসে তখন আপনি যে কোনও জায়গায় যাওয়ার ইচ্ছা রাখেন যদি আপনার সম্ভবত সম্ভবত এসএমটিপি প্রোটোকলটি গভীরভাবে বুঝতে হবে। আপনি এসএমটিপিতে উইকিপিডিয়া নিবন্ধ দিয়ে শুরু করতে পারেন , তবে পরবর্তী কোনও অগ্রগতি আসলে একটি এসএমটিপি সার্ভারের বিরুদ্ধে প্রোগ্রামিংয়ের প্রয়োজন হবে।


আমি কী টমকেটকে আমার এসএমটিপি সার্ভার হিসাবে ব্যবহার করতে পারি? একই বিষয়ে সহায়তা প্রশংসা করা হবে। :)
CᴴᴀZ

3
@ ছাজ @ আপনি কোথা থেকে ধারণা পেয়েছেন টমক্যাট একটি এসএমটিপি সার্ভার হবে?
eis

6

মেলগুলি প্রেরণের জন্য আপনার একটি এসএমটিপি সার্ভারের প্রয়োজন। এমন সার্ভার রয়েছে যা আপনি স্থানীয়ভাবে নিজের পিসিতে ইনস্টল করতে পারেন বা আপনি অনেকগুলি অনলাইন সার্ভারের মধ্যে একটি ব্যবহার করতে পারেন। আরও পরিচিত সার্ভারগুলির মধ্যে একটি হ'ল গুগল এর:

আমি সিম্পল জাভা মেল থেকে প্রথম উদাহরণটি ব্যবহার করে অনুমোদিত 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);

বিভিন্ন বন্দর এবং পরিবহন কৌশল লক্ষ্য করুন (যা আপনার জন্য প্রয়োজনীয় সমস্ত সম্পত্তি পরিচালনা করে)।

কৌতূহলজনকভাবে, গুগলের নির্দেশাবলী অন্যথায় বলা সত্ত্বেও গুগলের 25 বন্দরটিতেও টিএলএস প্রয়োজন ।


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

নীচের কোডটি খুব ভালভাবে কাজ করে ama

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

এই কোডটি ইমেল প্রেরণে কাজ করবে?

ঠিক আছে, না, কিছু অংশ পরিবর্তন না করেই আপনি ত্রুটি পাচ্ছেন। আপনি বর্তমানে লোকালহোস্টে চলমান একটি এসএমটিপি সার্ভারের মাধ্যমে মেল প্রেরণের চেষ্টা করছেন তবে আপনি আর চালাচ্ছেন না ConnectException

কোডটি ঠিক আছে বলে ধরে নিয়েছি (আমি সত্যিই পরীক্ষা করে দেখিনি), আপনাকে হয় স্থানীয় একটি এসএমটিপি সার্ভার চালাতে হবে, অথবা একটি (রিমোট) একটি ব্যবহার করতে হবে (আপনার আইএসপি থেকে)।

কোড সম্পর্কিত, আপনি FAQ তে বর্ণিত জাভামেল ডাউনলোড প্যাকেজে নমুনাগুলি খুঁজে পেতে পারেন :

আমি জাভামেল কীভাবে ব্যবহার করব তা দেখায় এমন কয়েকটি উদাহরণ প্রোগ্রাম কোথায় পাব?

প্রশ্ন: আমি জাভামেল কীভাবে ব্যবহার করব তা দেখায় এমন কয়েকটি উদাহরণ প্রোগ্রাম কোথায় পাব?
উত্তর: জাভামেল ডাউনলোড প্যাকেজে অন্তর্ভুক্ত রয়েছে এমন অনেকগুলি উদাহরণ রয়েছে যার মধ্যে জাভামেল এপিআই, একটি সুইং-ভিত্তিক জিইউআই অ্যাপ্লিকেশন, একটি সাধারণ সার্লেট-ভিত্তিক অ্যাপ্লিকেশন এবং জেএসপি পৃষ্ঠাগুলি ব্যবহার করে একটি সম্পূর্ণ ওয়েব অ্যাপ্লিকেশন সহ বিভিন্ন সাধারণ চিত্র কমান্ড লাইন প্রোগ্রাম অন্তর্ভুক্ত রয়েছে including একটি ট্যাগ লাইব্রেরি।


হাই, আসলে একটি এসএমটিপি সার্ভার কী? এটি ইমেল সার্ভারে অন্তর্ভুক্ত এবং বান্ডিল হয়? অথবা আমাদের আলাদাভাবে এসএমটিপি সেটআপ করতে হবে?
GMsoF

ডোভকোট একটি এসএমটিপি সার্ভার। নিজেকে এই প্রশ্ন জিজ্ঞাসা করুন: কি সফ্টওয়্যার গুগল রান যে আপনি এই ই-মেইল পাঠাচ্ছি করে করতে ? তারা কোনও ধরণের এসএমটিপি সার্ভার চালাচ্ছে। ডোভকোট ভাল; ডোভকোট এবং পোস্টফিক্স একসাথে করা ভাল। আমি মনে করি পোস্টফিক্সটি এসএমটিপি অংশ এবং ইমপ্যাপ অংশটি ডোভকোট।
থুফির

2

এটি চেষ্টা করে দেখুন। এটি আমর জন্য ভাল কাজ করছে. নিশ্চিত হয়ে নিন যে ইমেল প্রেরণের আগে আপনাকে আপনার জিমেইল অ্যাকাউন্টে কম সুরক্ষিত অ্যাপের জন্য অ্যাক্সেস দেওয়া দরকার। সুতরাং নীচের লিঙ্কে যান এবং এই জাভা কোড দিয়ে চেষ্টা করে দেখুন।
কম সুরক্ষিত অ্যাপের জন্য জিমেইল সক্রিয় করুন

আপনার প্রকল্পে আপনাকে javax.mail.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. আমার অ্যাকাউন্টে "কম সুরক্ষিত অ্যাপস" বিভাগে ক্লিক করুন on পছন্দ
  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

আপনার পর্যালোচনার জন্য আমি আমার ওয়ার্কিং জিমেইল জাভা ক্লাস পেস্টবিনে রেখেছি, "স্টার্টসেশনউইথটিএলএস" পদ্ধতিতে বিশেষ মনোযোগ দিন এবং আপনি একই কার্যকারিতা সরবরাহ করতে জাভামেল সামঞ্জস্য করতে সক্ষম হতে পারেন। http://pastebin.com/VE8Mqkqp


সম্ভবত আপনি নিজের উত্তরটি কিছুটা আরও সরবরাহ করতে পারেন?
এন্টি হাপাল

1

আপনার কোডটি এসএমটিপি সার্ভারের সাথে সংযোগ স্থাপন ব্যতীত কাজ করে। আপনার জন্য ইমেল প্রেরণের জন্য আপনার একটি চলমান মেল (এসএমটিপি) সার্ভারের প্রয়োজন।

আপনার পরিবর্তিত কোডটি এখানে। আমি প্রয়োজনীয় অংশগুলি মন্তব্য করেছি এবং সেশন তৈরির পরিবর্তন করেছি যাতে এটি একটি প্রমাণীকরণকারী লাগে। এখন কেবলমাত্র আপনি যে 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

আপনারা যেমন পেয়েছেন তেমন ব্যতিক্রমও পেয়েছি। এর কারণটি আপনার মেশিনে সিম্প সার্ভারটি চালু এবং চলমান নয় (যেহেতু আপনার হোস্ট লোকালহোস্ট)। আপনি যদি উইন্ডোজ 7 ব্যবহার করেন তবে এতে এসএমটিপি সার্ভার নেই। সুতরাং আপনাকে ডোমেন এবং অ্যাকাউন্টগুলি তৈরি করতে ডাউনলোড, ইনস্টল এবং কনফিগার করতে হবে I আমি আমার স্থানীয় মেশিনে এসএমটিপি সার্ভার ইনস্টল করে কনফিগার করেছি হিসাবে hmailserver ব্যবহার করেছি। https://www.hmailserver.com/download


-2

গুগল (জিমেইল) একাউন্ট ব্যবহার করে ইমেল প্রেরণের জন্য আপনি একটি সম্পূর্ণ এবং খুব সাধারণ জাভা ক্লাস পেতে পারেন,

জাভা এবং গুগল অ্যাকাউন্ট ব্যবহার করে ইমেল প্রেরণ করুন

এটি নিম্নলিখিত বৈশিষ্ট্য ব্যবহার করে

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
নোট করুন যে লিঙ্ক-কেবল উত্তরগুলি এসও-তে নিরুৎসাহিত করা হয়েছে। উত্তরের উত্তরে নিজেই অন্তর্ভুক্ত করা ভাল।
laalto
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.