All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.stylefeng.roses.email.spring.model.SendMailParam Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package cn.stylefeng.roses.email.spring.model;

import lombok.Data;

/**
 * 发送邮件的请求参数
 *
 * @author fengshuonan
 * @date 2018-07-05 21:19
 */
@Data
public class SendMailParam {

    /**
     * 发送给某人的邮箱
     */
    private String to;

    /**
     * 邮件标题
     */
    private String title;

    /**
     * 邮件内容
     */
    private String content;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy