在Java中使用Gmail發(fā)送郵件
作者:51CTO
Gmail現(xiàn)在是個十分流行的電子郵件產(chǎn)品。本文教你如何在Java中使用Gmail發(fā)送郵件。
以下Java代碼可以實現(xiàn)使用SMTP登陸到Gmail中并使用Gmail發(fā)送郵件。
使用Gmail發(fā)送郵件的代碼:
- String host = "smtp.gmail.com";
- String from = "username";
- String pass = "password";
- Properties props = System.getProperties();
- props.put("mail.smtp.starttls.enable", "true"); // 在本行添加
- props.put("mail.smtp.host", host);
- props.put("mail.smtp.user", from);
- props.put("mail.smtp.password", pass);
- props.put("mail.smtp.port", "587");
- props.put("mail.smtp.auth", "true");
- String[] to = {"to@gmail.com"}; // 在本行添加
- Session session = Session.getDefaultInstance(props, null);
- MimeMessage message = new MimeMessage(session);
- message.setFrom(new InternetAddress(from));
- InternetAddress[] toAddress = new InternetAddress[to.length];
- // 獲取地址的array
- for( int i=0; i < to.length; i++ ) { // 從while循環(huán)更改而成
- toAddress[i] = new InternetAddress(to[i]);
- }
- System.out.println(Message.RecipientType.TO);
- for( int i=0; i < toAddress.length; i++) { // 從while循環(huán)更改而成
- message.addRecipient(Message.RecipientType.TO, toAddress[i]);
- }
- message.setSubject("sending in a group");
- message.setText("Welcome to JavaMail");
- Transport transport = session.getTransport("smtp");
- transport.connect(host, from, pass);
- transport.sendMessage(message, message.getAllRecipients());
- transport.close();
代碼本身應該很清楚了。在第7和8行加入你的Google賬號密碼:
- props.put("mail.smtp.user", from);
- props.put("mail.smtp.password", pass);
在12行加入收件人信息:
- String[] to = {"to@gmail.com"}; // 在本行添加
這樣就可以在你的Java程序中使用Gmail發(fā)送郵件啦。
【編輯推薦】
責任編輯:yangsai
來源:
51CTO.com