Android应用开发Android 使用javaMail jar包发送邮件到指定邮箱,并可以发送图片附件
白羽 2019-03-25 来源 :网络 阅读 1239 评论 0

摘要:本文将带你了解Android应用开发Android 使用javaMail jar包发送邮件到指定邮箱,并可以发送图片附件,希望本文对大家学Android有所帮助。

    本文将带你了解Android应用开发Android 使用javaMail jar包发送邮件到指定邮箱,并可以发送图片附件,希望本文对大家学Android有所帮助。



Android应用开发Android 使用javaMail jar包发送邮件到指定邮箱,并可以发送图片附件


Android发送邮件到指定邮箱一种是调用系统发邮件的软件,可以添加邮箱账号就可以发送邮件;第二种是使用javamail来发送邮件,使用javamail来发送邮件需要使用javaMail的jar包   mail.jar 、additionnal.jar 、activation.jar 这三个包 。关键代码如下:
   
 


  
    import java.io.File;
    import java.util.Date;
    import java.util.Properties;
     
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Session;
    import javax.mail.Transport;
    import   javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
     
    /**
   
* Created by Ryan on 2017/12/10.
   
*/
   
public class EmailSender {
     
        private   Properties properties;
        private Session   session;
        private   Message message;
        private   MimeMultipart multipart;
     
        public   EmailSender() {
              super();
              this.properties   = new Properties();
        }
        public void   setProperties(String host,String post){
            //地址
   
          this.properties.put(mail.smtp.host,host);
              //端口号
   
          this.properties.put(mail.smtp.post,post);
              //是否验证
   
          this.properties.put(mail.smtp.auth,true);
              this.session=   Session.getInstance(properties);
              this.message   = new   MimeMessage(session);
              this.multipart   = new   MimeMultipart(mixed);
        }
        /**
   
     *   设置收件人
   
       * @param   receiver
   
     *   @throws   MessagingException
   
     */
   
      public void   setReceiver(String[] receiver) throws   MessagingException{
            javax.mail.Address[] address   = new   InternetAddress[receiver.length];
              for(int i=0;i<receiver.length;i++){
                address[i] =   new InternetAddress(receiver[i]);
            }
              this.message.setRecipients(Message.RecipientType.TO,   address);
        }
        /**
   
     *   设置邮件
   
       * @param   from   来源
   
       * @param   title   标题
   
       * @param   content   内容
   
       * @throws   AddressException
   
     *   @throws   MessagingException
   
     */
   
      public void setMessage(String   from,String title,String content) throws   AddressException, MessagingException{
              this.message.setFrom(new   InternetAddress(from));
              this.message.setSubject(title);
              //纯文本的话用setText()就行,不过有附件就显示不出来内容了
   
          MimeBodyPart textBody = new   MimeBodyPart();
              textBody.setContent(content,text/html;charset=gbk);
            this.multipart.addBodyPart(textBody);
        }
        /**
   
     *   添加附件
   
       * @param   filePath   文件路径
   
       * @throws   MessagingException
   
     */
   
      public void   addAttachment(String filePath) throws   MessagingException {
            FileDataSource fileDataSource   = new FileDataSource(new   File(filePath));
            DataHandler dataHandler =   new DataHandler(fileDataSource);
            MimeBodyPart mimeBodyPart =   new MimeBodyPart();
              mimeBodyPart.setDataHandler(dataHandler);
              mimeBodyPart.setFileName(fileDataSource.getName());
            this.multipart.addBodyPart(mimeBodyPart);
        }
        /**
   
     *   发送邮件
   
       * @param   host   地址
   
       * @param   account 账户名
   
       * @param   pwd   密码
   
       * @throws   MessagingException
   
     */
   
      public void sendEmail(String   host,String account,String pwd) throws MessagingException{
              //发送时间
   
          this.message.setSentDate(new   Date());
              //发送的内容,文本和附件
   
          this.message.setContent(this.multipart);
              this.message.saveChanges();
              //创建邮件发送对象,并指定其使用SMTP协议发送邮件
   
          Transport   transport=session.getTransport(smtp);
              //登录邮箱
   
          transport.connect(host,account,pwd);
              //发送邮件
   
          transport.sendMessage(message,   message.getAllRecipients());
              //关闭连接
   
          transport.close();
        }
    }
   
 

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标移动开发之Android频道!

本文由 @白羽 发布于职坐标。未经许可,禁止转载。
喜欢 | 1 不喜欢 | 0
看完这篇文章有何感觉?已经有1人表态,100%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式IT培训就业服务领导者 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved

208小时内训课程