package com.pollex.pam.service.dto;
|
|
import java.util.List;
|
|
public class SendMailRequest {
|
|
/**
|
* 收件者
|
*/
|
private List<String> sendMailAddresses;
|
/**
|
* 副本
|
*/
|
private List<String> sendCCMailAddresses;
|
/**
|
* 主題
|
*/
|
private String subject;
|
/**
|
* 內文
|
*/
|
private String content;
|
/**
|
* 寄件者
|
*/
|
private String from;
|
/**
|
* 附件路徑
|
*/
|
private List<String> attachments;
|
/**
|
* 是否 html format
|
*/
|
private boolean htmlFormat;
|
/**
|
* 自定義訊息分類 (因應保誠的要求,先暫時寫死城epos)
|
*/
|
private String functionId;
|
|
public List<String> getSendMailAddresses() {
|
return sendMailAddresses;
|
}
|
|
public void setSendMailAddresses(List<String> sendMailAddresses) {
|
this.sendMailAddresses = sendMailAddresses;
|
}
|
|
public List<String> getSendCCMailAddresses() {
|
return sendCCMailAddresses;
|
}
|
|
public void setSendCCMailAddresses(List<String> sendCCMailAddresses) {
|
this.sendCCMailAddresses = sendCCMailAddresses;
|
}
|
|
public String getSubject() {
|
return subject;
|
}
|
|
public void setSubject(String subject) {
|
this.subject = subject;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getFrom() {
|
return from;
|
}
|
|
public void setFrom(String from) {
|
this.from = from;
|
}
|
|
public List<String> getAttachments() {
|
return attachments;
|
}
|
|
public void setAttachments(List<String> attachments) {
|
this.attachments = attachments;
|
}
|
|
public boolean isHtmlFormat() {
|
return htmlFormat;
|
}
|
|
public void setHtmlFormat(boolean htmlFormat) {
|
this.htmlFormat = htmlFormat;
|
}
|
|
public String getFunctionId() {
|
return functionId;
|
}
|
|
public void setFunctionId(String functionId) {
|
this.functionId = functionId;
|
}
|
}
|