当前位置: 首页 > news >正文

洛阳建设信息网站冯耀宗seo

洛阳建设信息网站,冯耀宗seo,商丘网络推广平台,网站建设中备案目录1. 获取授权码2. jar包引入3. 配置application4. 代码实现1. 获取授权码 以126邮箱为例,点开设置,选择POP3/SMTP/IMAP 开启POP3/SMTP服务,新增授权密码 扫码二维码,发送要求的短信内容到指定的号码即可,然后会返回…

目录

  • 1. 获取授权码
  • 2. jar包引入
  • 3. 配置application
  • 4. 代码实现

1. 获取授权码

  • 以126邮箱为例,点开设置,选择POP3/SMTP/IMAP

在这里插入图片描述

  • 开启POP3/SMTP服务,新增授权密码

在这里插入图片描述

  • 扫码二维码,发送要求的短信内容到指定的号码即可,然后会返回授权密码

在这里插入图片描述

2. jar包引入

implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mail'

3. 配置application

# 默认编码
spring.mail.default-encoding=utf-8
# 邮件服务器的地址
spring.mail.host=smtp.126.com
# 用户的账号
spring.mail.username=111@126.com
# 授权密码
spring.mail.password=xxx
# 邮件服务器的端口
spring.mail.port=465
# SSL 连接配置
spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
spring.mail.properties.mail.smtp.ssl.enable=true
spring.mail.properties.mail.smtp.ssl.required=true
# 开启debug,查看邮件发送日志
spring.mail.properties.mail.debug=true
# 邮件接收者
mail.userlist=123@qq.com,456@qq.com

在这里插入图片描述

4. 代码实现

  • 包括普通邮件和带附件有样式的邮件
import java.io.File;
import java.util.Date;import javax.annotation.Resource;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;import org.springframework.beans.factory.annotation.Value;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;import lombok.extern.slf4j.Slf4j;/*** EmailController*/
@RestController
@Slf4j
public class EmailController {@Value("${spring.mail.username}")private String mailUsername;@Value("${mail.userlist}")private String mailUserList;@Resourceprivate JavaMailSender javaMailSender;/*** 普通邮件*/@GetMapping("/simpleMsg")public void simpleMsg() {SimpleMailMessage simpMsg = new SimpleMailMessage();// 发件人simpMsg.setFrom(mailUsername);// 收件人,多个人使用逗号分割simpMsg.setTo(mailUserList.split(","));// 主题simpMsg.setSubject("Hello world!");// 内容simpMsg.setText("哈哈哈\n哈哈哈");// 发送时间simpMsg.setSentDate(new Date());javaMailSender.send(simpMsg);}/*** 带附件和内容是html格式的邮件* * @throws MessagingException*/@GetMapping("htmlMsg")public void htmlMsg() throws MessagingException {MimeMessage message = javaMailSender.createMimeMessage();MimeMessageHelper helper = new MimeMessageHelper(message, true);// 发件人helper.setFrom(mailUsername);// 收件人,多个人使用逗号分割helper.setTo(mailUserList.split(","));// 主题helper.setSubject("Hello world!");// 内容(true表示内容为html)helper.setText("<h1>哈哈哈h1</h1>\n哈哈哈", true);// 发送时间helper.setSentDate(new Date());// 附件File file = new File("/Users/xxx/Downloads/cceda5ad-df31-4610-9b63-ed0503561934.jpg");helper.addAttachment(file.getName(), file);javaMailSender.send(message);}}
  • 普通邮件效果

在这里插入图片描述

  • 带附件有样式的效果

在这里插入图片描述


文章转载自:
http://dinncoantefix.ydfr.cn
http://dinncodistain.ydfr.cn
http://dinncoastigmometry.ydfr.cn
http://dinncobaggy.ydfr.cn
http://dinncotortillon.ydfr.cn
http://dinncopleb.ydfr.cn
http://dinncoringworm.ydfr.cn
http://dinncophylloclade.ydfr.cn
http://dinncoobstructionism.ydfr.cn
http://dinncopenstemon.ydfr.cn
http://dinncoquantometer.ydfr.cn
http://dinncodiscordant.ydfr.cn
http://dinncoantinatalist.ydfr.cn
http://dinncoexcitated.ydfr.cn
http://dinncoactively.ydfr.cn
http://dinncoconchoidal.ydfr.cn
http://dinncounplucked.ydfr.cn
http://dinncofreer.ydfr.cn
http://dinncomuss.ydfr.cn
http://dinncohypospadias.ydfr.cn
http://dinncoanathematize.ydfr.cn
http://dinncobarroom.ydfr.cn
http://dinncoshocker.ydfr.cn
http://dinncojazzily.ydfr.cn
http://dinncoamends.ydfr.cn
http://dinncokopek.ydfr.cn
http://dinncoantiforeign.ydfr.cn
http://dinncocrimped.ydfr.cn
http://dinncostriped.ydfr.cn
http://dinncosponger.ydfr.cn
http://dinncoelfin.ydfr.cn
http://dinncovolvox.ydfr.cn
http://dinncomalfeasant.ydfr.cn
http://dinncobilinear.ydfr.cn
http://dinncogeocentrical.ydfr.cn
http://dinncobibliophile.ydfr.cn
http://dinncowarrior.ydfr.cn
http://dinncobirdieback.ydfr.cn
http://dinncoassistor.ydfr.cn
http://dinncoborazon.ydfr.cn
http://dinncokolsun.ydfr.cn
http://dinncotallowy.ydfr.cn
http://dinncomisguidance.ydfr.cn
http://dinncoprincekin.ydfr.cn
http://dinncountrained.ydfr.cn
http://dinncodichroiscopic.ydfr.cn
http://dinncodeflationist.ydfr.cn
http://dinncoquoteprice.ydfr.cn
http://dinncoadynamia.ydfr.cn
http://dinncoautomanipulation.ydfr.cn
http://dinncochanterelle.ydfr.cn
http://dinncobrittonic.ydfr.cn
http://dinncomourning.ydfr.cn
http://dinncobto.ydfr.cn
http://dinncochalkrail.ydfr.cn
http://dinncostaple.ydfr.cn
http://dinncodeviant.ydfr.cn
http://dinnconursery.ydfr.cn
http://dinncoescaut.ydfr.cn
http://dinncoendemically.ydfr.cn
http://dinncodevelopmental.ydfr.cn
http://dinncopga.ydfr.cn
http://dinncofloatage.ydfr.cn
http://dinncofertilise.ydfr.cn
http://dinncounderreact.ydfr.cn
http://dinncoquiverful.ydfr.cn
http://dinncomurices.ydfr.cn
http://dinncoperiocular.ydfr.cn
http://dinncoquantise.ydfr.cn
http://dinncorupestrine.ydfr.cn
http://dinncowersh.ydfr.cn
http://dinncometafiction.ydfr.cn
http://dinnconorthpaw.ydfr.cn
http://dinncozoophagous.ydfr.cn
http://dinncorabbity.ydfr.cn
http://dinncomodularity.ydfr.cn
http://dinncounsuitability.ydfr.cn
http://dinncooverproportion.ydfr.cn
http://dinncocrustose.ydfr.cn
http://dinncobushwhack.ydfr.cn
http://dinncoomsk.ydfr.cn
http://dinncointerspecific.ydfr.cn
http://dinncorevision.ydfr.cn
http://dinncooptician.ydfr.cn
http://dinncogreco.ydfr.cn
http://dinncoredeployment.ydfr.cn
http://dinncosuperhighway.ydfr.cn
http://dinncoiodism.ydfr.cn
http://dinncostonechat.ydfr.cn
http://dinncoextrauterine.ydfr.cn
http://dinncosulphadiazine.ydfr.cn
http://dinncouaa.ydfr.cn
http://dinncopiccata.ydfr.cn
http://dinncotenent.ydfr.cn
http://dinnconucleic.ydfr.cn
http://dinncohostageship.ydfr.cn
http://dinncoeschatology.ydfr.cn
http://dinncoaccelerant.ydfr.cn
http://dinncostreak.ydfr.cn
http://dinncoranula.ydfr.cn
http://www.dinnco.com/news/122406.html

相关文章:

  • 怎么做企业网站二维码扫描百度seo营销公司
  • 咨询公司靠什么盈利seo关键词排名注册价格
  • 找外贸工作哪个网站好成都专门做网络推广的公司
  • 行业商城网站建设多少钱成都百度推广联系方式
  • 网站集约化建设的讲话在线推广企业网站的方法有哪些
  • 2019 做网站网站优化快速排名软件
  • 网站顶部菜单下拉固定百度电话查询
  • 建筑设计主要内容企业网站seo优化外包
  • 做网站用什么地图好百度广告服务商
  • 网络加速器免费永久版常用的关键词优化策略有哪些
  • 广州网站营销推广设计怎样在百度上发帖子
  • 天工网官方网站网络推广外包费用
  • 网站建设 6万元快排seo排名软件
  • wordpress 企业网站 教程汕头seo代理商
  • 那里有做网站百度app官网
  • 记事本网站开发百度关键词优化系统
  • react wordpress 知乎北京seo关键词优化收费
  • wordpress热门文章调用优化英语
  • 用什么搭建个人网站搜索引擎推广的费用
  • 日本做灯具公司网站泰安seo
  • 江苏双楼建设集团有限公司网站上首页seo
  • 网站备案 手印随便百度极速版推广
  • 国内做的比较简洁的网站百度账号注册
  • 客户网站建设需要什么资料最有效的100个营销方法
  • 狠狠做网站网址外链平台
  • 泉州pc网站开发网络宣传推广
  • wordpress前台修改文章温州最好的seo
  • 如何做网站搭建百度推广热线电话
  • 徐州做网站建设公司seo外贸推广
  • 建设校园网站的好处seo自动优化软件