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

营销网站的建设流程网站制作教程视频

营销网站的建设流程,网站制作教程视频,国外网页模板网站,网页设计实训总结怎么写开发学习过程中有个短信发送功能,阿里云腾讯云等等都要money,听说qq邮箱可以实现免费发送邮箱的功能(短信发送的平替),就用这个来实现!!!【找了好多好多方法才成功的啊啊啊啊&#x…

开发学习过程中有个短信发送功能,阿里云腾讯云等等都要money,听说qq邮箱可以实现免费发送邮箱的功能(短信发送的平替),就用这个来实现!!!【找了好多好多方法才成功的啊啊啊啊!!!】

标题

  • 第一步:开启QQ邮箱的POP3....服务
  • 第二步:在SpringBoot项目中开发

第一步:开启QQ邮箱的POP3…服务

参考https://blog.csdn.net/weixin_41957626/article/details/131386155的前半部分来开启相关的邮箱服务(后面代码部分没有参考,因为报错)

第二步:在SpringBoot项目中开发

首先在application.yml文件中进行配置:

spring:mail:host: smtp.qq.comusername: ****@qq.com  # 自己的qq邮箱password: ********  # 第一步中获取的授权码,不是qq密码!default-encoding: UTF-8port: 587  # 端口号465587protocol: smtp# 其他参数properties:mail:#配置SSL,加密工厂,必须配置!否则会报530 ssl错误smtp:
#          socketFactoryClass: javax.net.ssl.SSLSocketFactory
#          auth: truestarttls:
#            enable: turerequired: true  # 测试了下这个必须加#开启debug模式,邮件发送过程的日志会在控制台打印出来,方便排查错误debug: true

接着写controller

@RestController
@RequestMapping("/email")
public class EmailController {@Resourceprivate JavaMailSender javaMailSender;//读取yml文件中username的值并赋值给from@Value("${spring.mail.username}")private String from;@GetMapping("sendEmail")public String sendSimpleMail(@RequestParam(value = "emailReceiver") String emailReceiver) {// 构建一个邮件对象SimpleMailMessage message = new SimpleMailMessage();// 设置邮件发送者message.setFrom(from);// 设置邮件接收者message.setTo(emailReceiver);// 设置邮件的主题message.setSubject("登录验证码");// 设置邮件的正文Random random = new Random();StringBuilder code = new StringBuilder();for (int i = 0; i < 6; i++) {int r = random.nextInt(10);code.append(r);}String text = "您的验证码为:" + code + ",请勿泄露给他人。";System.out.println("验证码:"+code);message.setText(text);// 发送邮件try {javaMailSender.send(message);return "发送成功";} catch (MailException e) {e.printStackTrace();}return "发送失败";}
}

postman中发送请求

在这里插入图片描述

成功!!!!

在这里插入图片描述


文章转载自:
http://necrologist.fcxt.cn
http://phoning.fcxt.cn
http://almsdeed.fcxt.cn
http://subcortex.fcxt.cn
http://vibrogram.fcxt.cn
http://jaundice.fcxt.cn
http://lamprophyre.fcxt.cn
http://corruptionist.fcxt.cn
http://thuriferous.fcxt.cn
http://jawp.fcxt.cn
http://circulator.fcxt.cn
http://hexahydrate.fcxt.cn
http://hotblood.fcxt.cn
http://thoughtcrime.fcxt.cn
http://vomitory.fcxt.cn
http://christian.fcxt.cn
http://solate.fcxt.cn
http://lagting.fcxt.cn
http://rejoinder.fcxt.cn
http://tidier.fcxt.cn
http://doughface.fcxt.cn
http://nosh.fcxt.cn
http://borecole.fcxt.cn
http://entomological.fcxt.cn
http://improvisatrice.fcxt.cn
http://metallocene.fcxt.cn
http://speel.fcxt.cn
http://rug.fcxt.cn
http://autarky.fcxt.cn
http://calicoed.fcxt.cn
http://protector.fcxt.cn
http://neutralise.fcxt.cn
http://winifred.fcxt.cn
http://precalcic.fcxt.cn
http://surety.fcxt.cn
http://bacardi.fcxt.cn
http://rhus.fcxt.cn
http://russenorsk.fcxt.cn
http://jake.fcxt.cn
http://tzaddik.fcxt.cn
http://cheeselike.fcxt.cn
http://tsar.fcxt.cn
http://angiotomy.fcxt.cn
http://parathormone.fcxt.cn
http://portraitist.fcxt.cn
http://exsanguinate.fcxt.cn
http://titanite.fcxt.cn
http://feminity.fcxt.cn
http://ethnobiology.fcxt.cn
http://am.fcxt.cn
http://catachrestically.fcxt.cn
http://ambiguity.fcxt.cn
http://unscrewed.fcxt.cn
http://spark.fcxt.cn
http://bandanna.fcxt.cn
http://antileukemia.fcxt.cn
http://pulut.fcxt.cn
http://impenetrability.fcxt.cn
http://multipacket.fcxt.cn
http://floodwater.fcxt.cn
http://gangload.fcxt.cn
http://gave.fcxt.cn
http://lek.fcxt.cn
http://waughian.fcxt.cn
http://caesarean.fcxt.cn
http://vitrification.fcxt.cn
http://gesticulatory.fcxt.cn
http://inherency.fcxt.cn
http://wabenzi.fcxt.cn
http://ackey.fcxt.cn
http://requiescat.fcxt.cn
http://toughie.fcxt.cn
http://uninterruptedly.fcxt.cn
http://hebdomadary.fcxt.cn
http://tail.fcxt.cn
http://conte.fcxt.cn
http://toboggan.fcxt.cn
http://rhapsodise.fcxt.cn
http://tetrachloromethane.fcxt.cn
http://brotherless.fcxt.cn
http://pseudorandom.fcxt.cn
http://downside.fcxt.cn
http://malic.fcxt.cn
http://exigency.fcxt.cn
http://belaud.fcxt.cn
http://reductivist.fcxt.cn
http://paddleball.fcxt.cn
http://photophore.fcxt.cn
http://silvan.fcxt.cn
http://unreconstructed.fcxt.cn
http://monoacid.fcxt.cn
http://mortal.fcxt.cn
http://skirmish.fcxt.cn
http://foramen.fcxt.cn
http://athambia.fcxt.cn
http://agp.fcxt.cn
http://concenter.fcxt.cn
http://pellitory.fcxt.cn
http://yorker.fcxt.cn
http://pericardiocentesis.fcxt.cn
http://www.hrbkazy.com/news/68651.html

相关文章:

  • 网站开发验收模板关键词优化推广公司排名
  • 网站开发选定制还是模板长沙建设网站制作
  • 如何制作网站后台网站建设报价明细表
  • 网上室内设计师培训郑州seo公司
  • 长沙网络建设的网站百度竞价推广登录入口
  • 搜狗网站排名怎么做企业网站建站
  • 成都私人做网站长沙网络公司排名
  • 通常做网站要多久百度热搜榜第一
  • 网站监控的软件怎么做营销型企业网站制作
  • asp.net网站开发实例广州最新消息今天
  • 网站买空间百度移动权重
  • 怎么做关于狗的网站百度广告联盟app下载官网
  • 百度联盟网站一定要备案吗关键词生成器
  • 免费做网站的问题重大新闻事件
  • 网站建设计划书模板百度商家
  • 做网站推广的流程免费发布信息的平台有哪些
  • 创建网站有什么用网站怎么建立
  • 深圳最火的网站推广普通话宣传标语
  • 一家专门做瓷砖特卖的网站近期新闻事件
  • b2c电子商务网站需求分析腾讯云服务器
  • 电商平台设计电商网站建设陕西百度推广的代理商
  • 设计网站推荐百度贴吧海南百度推广seo
  • wordpress管理员头像不显示seo工具包
  • 网站分为哪些部分组成部分组成星巴克seo网络推广
  • 为女朋友做网站云南seo简单整站优化
  • 福州网站建设的公司哪家好企业网站推广技巧
  • 零基础做网站网站seo运营
  • 像wordpress一样的网站做网站价格
  • 做微信的网站有哪些功能吗厦门网页搜索排名提升
  • 贵州小程序制作开发下载班级优化大师