gpt4 book ai didi

java - 我如何使用我的 gmail 作为 SMTP 并在 java 代码中使用它来发送电子邮件。

转载 作者:太空宇宙 更新时间:2023-11-04 07:53:19 24 4
gpt4 key购买 nike

我的申请需要向选定的人员发送电子邮件。我的应用程序完全基于java。我什至不知道如何使用我的 gmail 帐户作为 SMTP 邮件。

最佳答案

这是一个示例,根据您的要求更改frompassto

String host = "smtp.gmail.com";
String from = "username";
String pass = "password";
Properties props = System.getProperties();
props.put("mail.smtp.starttls.enable", "true"); // added this line
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"}; // added this line

Session session = Session.getDefaultInstance(props, null);
MimeMessage message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));

InternetAddress[] toAddress = new InternetAddress[to.length];

// To get the array of addresses
for( int i=0; i < to.length; i++ ) { // changed from a while loop
toAddress[i] = new InternetAddress(to[i]);
}
System.out.println(Message.RecipientType.TO);

for( int i=0; i < toAddress.length; i++) { // changed from a while loop
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();

关于java - 我如何使用我的 gmail 作为 SMTP 并在 java 代码中使用它来发送电子邮件。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14040222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com