gpt4 book ai didi

java - 在特定日期发送电子邮件

转载 作者:行者123 更新时间:2023-12-02 06:55:53 28 4
gpt4 key购买 nike

我想使用 Java 代码发送电子邮件。我正在使用smtp.gmail.com用于发送邮件并且工作正常。现在我想在每月的特定日期(例如每月 1 日)发送电子邮件。我已经搜索了很多,但不适合我。

下面是我发送邮件的代码。

public class sendMailUsingTimeInterval{
public static void main(String[] args) throws IOException{
String[] to={"to@gmail.com"};
String[] cc={"cc@gmail.com"};
String subject = "hello";
String body = "Thanks , this is test.....!!";

//This is for google
sendMail("from@gmail.com","password","smtp.gmail.com","465","true",
"true",true,"javax.net.ssl.SSLSocketFactory","false",to,cc,
subject,body);
}
public synchronized static boolean sendMail(String userName,String passWord,String host,String port,String starttls,String auth,boolean debug,String socketFactoryClass,String fallback,String[] to,String[] cc,String subject,String text)
{
Properties props = new Properties();
//Properties props=System.getProperties();
props.put("mail.smtp.user", userName);
props.put("mail.smtp.host", host);
if(!"".equals(port))
props.put("mail.smtp.port", port);
if(!"".equals(starttls))
props.put("mail.smtp.starttls.enable",starttls);
props.put("mail.smtp.auth", auth);
if(debug){
props.put("mail.smtp.debug", "true");
}
else
{
props.put("mail.smtp.debug", "false");
}
if(!"".equals(port))
props.put("mail.smtp.socketFactory.port", port);
if(!"".equals(socketFactoryClass))
props.put("mail.smtp.socketFactory.class",socketFactoryClass);
if(!"".equals(fallback))
props.put("mail.smtp.socketFactory.fallback", fallback);

try
{
Session session = Session.getDefaultInstance(props, null);
session.setDebug(debug);
MimeMessage msg = new MimeMessage(session);
msg.setContent(text,"text/html");
msg.setSubject(subject);
msg.setFrom(new InternetAddress("from@gmail.com"));
for(int i=0;i<to.length;i++)
{
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(to[i]));
}
for(int i=0;i<cc.length;i++)
{
msg.addRecipient(Message.RecipientType.CC, new InternetAddress(cc[i]));
}
msg.saveChanges();
Transport transport = session.getTransport("smtp");
transport.connect(host, userName, passWord);
transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
return true;
}
catch (Exception mex)
{
mex.printStackTrace();
return false;
}
}

调用此类时代码正在运行。如果有人能告诉我如何以每月 1 日自动发送消息的方式实现它,我将非常感激。

最佳答案

您可以使用 Quartz 来执行此操作调度程序。

关于java - 在特定日期发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17368807/

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