Java實現(xiàn)發(fā)送郵件的代碼可以使用JavaMail庫來完成。以下是一個簡單的示例代碼:
import javax.mail.*;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;
public class SendEmail {
public static void main(String[] args) {
// 發(fā)送方郵箱地址
String fromEmail = "your_email@example.com";
// 發(fā)送方郵箱密碼或授權(quán)碼
String password = "your_password";
// 接收方郵箱地址
String toEmail = "recipient_email@example.com";
// 配置SMTP服務(wù)器的屬性
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.example.com");
props.put("mail.smtp.port", "587");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
// 創(chuàng)建Session對象
Session session = Session.getInstance(props, new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(fromEmail, password);
}
});
try {
// 創(chuàng)建MimeMessage對象
MimeMessage message = new MimeMessage(session);
// 設(shè)置發(fā)件人
message.setFrom(new InternetAddress(fromEmail));
// 設(shè)置收件人
message.addRecipient(Message.RecipientType.TO, new InternetAddress(toEmail));
// 設(shè)置郵件主題
message.setSubject("Test Email");
// 設(shè)置郵件內(nèi)容
message.setText("This is a test email.");
// 發(fā)送郵件
Transport.send(message);
System.out.println("Email sent successfully!");
} catch (MessagingException e) {
e.printStackTrace();
}
}
}
請注意,你需要將代碼中的"your_email@example.com",“your_password”,“smtp.example.com”,"recipient_email@example.com"替換為你自己的郵箱地址、密碼、SMTP服務(wù)器地址和接收方郵箱地址。