栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

springboot页面发邮件

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

springboot页面发邮件

package com.bwie.controller;

import com.bwie.pojo.Email;
import com.bwie.service.EmailService;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("/e")
public class EmailController {
    @Autowired
    EmailService emailService;
    @RequestMapping("/toemail")
    public String toemail(){
        return "email";
    }
    @RequestMapping("/email")
    @ResponseBody
    public String login(Email email){
        return emailService.email(email);
    }

}
package com.bwie.service.impl;

import com.bwie.pojo.Email;
import com.bwie.service.EmailService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.stereotype.Service;

@Service
public class EmailServiceimpl implements EmailService {
    //java发送邮箱摸班
    @Autowired
    JavaMailSender javaMailSender;

    @Override
    public String email(Email email) {
        SimpleMailMessage simpl = new SimpleMailMessage();
        //主题
        simpl.setSubject(email.getSubject());
        //内容
        simpl.setText(email.getText());
        //我
        simpl.setFrom(email.getFrom());
        //他
        simpl.setTo(email.getTo());
        javaMailSender.send(simpl);
        return "true";
    }
}



    
    Title
    
    



主题
内容:
来自:
发送:

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/630904.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号