使用javamail从hotmail发送邮件,可以通过以下步骤实现:
以下是一个示例代码:
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class SendEmail {
public static void main(String[] args) {
// 配置SMTP服务器信息
String host = "smtp.live.com";
int port = 587;
String username = "your_hotmail_username";
String password = "your_hotmail_password";
// 创建邮件会话
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", port);
Session session = Session.getInstance(props, new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
// 创建邮件消息
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("recipient@example.com"));
message.setSubject("Hello from Hotmail");
message.setText("This is a test email from Hotmail using javamail.");
// 发送邮件
Transport.send(message);
System.out.println("Email sent successfully.");
} catch (MessagingException e) {
e.printStackTrace();
}
}
}
这是一个简单的示例,可以根据实际需求进行扩展和定制。在实际应用中,可以使用javamail库提供的更多功能,如添加附件、设置邮件优先级等。
腾讯云提供了云邮件推送(Cloud Email)服务,可以通过API方式发送邮件。具体产品介绍和使用方法,请参考腾讯云云邮件推送产品文档:https://cloud.tencent.com/product/ce
领取专属 10元无门槛券
手把手带您无忧上云