java发送html附件_javamail发送带有附件的html邮件

package org.tatan.mail;

import javax.mail.Session;

import javax.mail.MessagingException;

import javax.mail.Multipart;

import javax.mail.Transport;

import javax.mail.internet.InternetAddress;

import javax.mail.internet.MimeMessage;

import javax.mail.internet.MimeBodyPart;

import javax.mail.internet.MimeMultipart;

import javax.activation.FileDataSource;

import javax.activation.DataHandler;

public class SendAttachMail {

public static void sendMessage(String smtpHost,

String from, String to,

String subject, String messageText,

String fileName)

throws MessagingException {

// Step 1:  Configure the mail session

java.util.Properties props = new java.util.Properties();

props.setProperty("mail.smtp.auth", "true");//指定是否需要SMTP验证

props.setProperty("mail.smtp.host", smtpHost);//指定SMTP服务器

props.put("mail.transport.protocol", "smtp");

Session mailSession = Session.getDefaultInstance(props);

mailSession.setDebug(true);//是否在控制台显示debug信息

// Step 2:  Construct the message

System.out.println("Constructing message -  from=" + from + "  to=" + to);

InternetAddress fromAddress = new InternetAddress(from);

InternetAddress toAddress = new InternetAddress(to);

MimeMessage testMessage = new MimeMessage(mailSession);

testMessage.setFrom(fromAddress);

testMessage.addRecipient(javax.mail.Message.RecipientType.TO, toAddress);

testMessage.setSentDate(new java.util.Date());

testMessage.setSubject(subject);

//  Step 3:  Create a body part to hold the "text" portion of the message

System.out.println("Constructing 'text' body part");

MimeBodyPart textBodyPart = new MimeBodyPart();

textBodyPart.setContent(messageText,"text/html;charset=gb2312");

//  Step 4:  Create a body part to hold the "file" portion of the message

System.out.println("Attaching 'file' body part: " + fileName);

MimeBodyPart fileBodyPart = new MimeBodyPart();

FileDataSource fds = new FileDataSource("c:\\a.rar");

fileBodyPart.setDataHandler(new DataHandler(fds));

fileBodyPart.setFileName(fds.getName());

System.out.println("Finished attaching file");

// Step 5:  Create a Multipart/container and add the parts

Multipart container = new MimeMultipart();

container.addBodyPart(textBodyPart);

container.addBodyPart(fileBodyPart);

// Step 6:  Add the Multipart to the actual message

testMessage.setContent(container);

System.out.println("Message constructed");

// Step 7:  Now send the message

Transport transport = mailSession.getTransport("smtp");

transport.connect(smtpHost, "webmaster", "password");

transport.sendMessage(testMessage, testMessage.getAllRecipients());

transport.close();

System.out.println("Message sent!");

}

public static void main(String[] args) {

String fileName = "a.rar";

String smtpHost = "localhost";

String from = "webmaster@mymail.com";

String to = "mfc42d@sohu.com";

String subject = "html邮件附件测试"; //subject javamail自动转码

StringBuffer theMessage = new StringBuffer();

theMessage.append("

这倒霉孩子

");

theMessage.append("


");

theMessage.append("年年失望年年望");

try {

SendAttachMail.sendMessage(smtpHost, from, to, subject, theMessage.toString(), fileName);

}

catch (javax.mail.MessagingException exc) {

exc.printStackTrace();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java可以通过JavaMail API来实现发送带有附件邮件。以下是一个简单的示例代码: ```java import java.util.Properties; import javax.mail.*; import javax.mail.internet.*; public class SendEmailWithAttachment { public static void main(String[] args) { // 收件人电子邮箱 String to = "receiver@example.com"; // 发件人电子邮箱 String from = "sender@example.com"; // 指定发送邮件的主机为 smtp.qq.com String host = "smtp.qq.com"; // 获取系统属性 Properties properties = System.getProperties(); // 设置邮件服务器 properties.setProperty("mail.smtp.host", host); // 设置邮件服务器需要认证 properties.setProperty("mail.smtp.auth", "true"); // 获取默认session对象 Session session = Session.getDefaultInstance(properties, new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("sender_email", "sender_email_password"); } }); try { // 创建默认的 MimeMessage 对象 MimeMessage message = new MimeMessage(session); // 设置 From: 头部头字段 message.setFrom(new InternetAddress(from)); // 设置 To: 头部头字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // 设置 Subject: 头部头字段 message.setSubject("邮件主题"); // 创建消息部分 BodyPart messageBodyPart = new MimeBodyPart(); // 设置消息部分内容 messageBodyPart.setText("邮件正文"); // 创建多重消息 Multipart multipart = new MimeMultipart(); // 设置文本消息部分 multipart.addBodyPart(messageBodyPart); // 创建附件部分 messageBodyPart = new MimeBodyPart(); // 设置要发送的文件路径 String filename = "path_to_file"; // 创建数据源 DataSource source = new FileDataSource(filename); // 添加附件 messageBodyPart.setDataHandler(new DataHandler(source)); messageBodyPart.setFileName(filename); multipart.addBodyPart(messageBodyPart); // 发送完整消息 message.setContent(multipart); // 发送消息 Transport.send(message); System.out.println("邮件发送成功!"); } catch (MessagingException mex) { mex.printStackTrace(); } } } ``` 在代码中,需要替换以下内容: - `to`:收件人的电子邮箱地址 - `from`:发件人的电子邮箱地址 - `host`:邮件服务器主机名 - `sender_email`:发件人的电子邮箱账号 - `sender_email_password`:发件人的电子邮箱密码 - `filename`:要发送附件的文件路径 以上代码只是一个简单的示例,实际使用中可能需要进行更多的配置和调整。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值