阿里云邮件模板,参数类

This commit is contained in:
阿沐 2024-06-25 17:14:43 +08:00
parent 8202c12a17
commit 35f07b47fe

View File

@ -0,0 +1,33 @@
package net.maku.email.param;
import lombok.Data;
/**
* 阿里云 批量发送邮件参数
*
* @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/
@Data
public class EmailAliyunBatchSendParam {
/**
* 分组名称非必填
*/
private String groupName;
/**
* 发件人邮箱
*/
private String from;
/**
* 收件人列表名称
*/
private String receiversName;
/**
* 邮件模板名称
*/
private String templateName;
/**
* 邮件标签
*/
private String tagName;
}