java smtps 发送邮件代码
时间: 2023-03-11 07:17:41 浏览: 135
Java发送邮件代码
我可以提供一些示例代码,可以帮助你发送SMTPS邮件: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 SendMail { public static void main(String[] args) { final String username = "your_email_address@gmail.com";
final String password = "your_password"; 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"); 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_email_address@gmail.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("to_whom_you_are_sending@gmail.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);
}
}
}
阅读全文