interface AwsSesNodeParameters {
additionalFields?:
| { configurationSetName?: string }
| {
bccAddresses?: string;
ccAddresses?: string;
configurationSetName?: string;
replyToAddresses?: string;
returnPath?: string;
returnPathArn?: string;
sourceArn?: string;
}
| { textPart?: string };
body?: string;
email?: string;
failureRedirectionURL?: string;
fromEmail?: string;
fromEmailAddress?: string;
htmlPart?: string;
isBodyHtml?: boolean;
limit?: number;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "send"
| "sendTemplate";
resource?: | "template"
| "email"
| "customVerificationEmail";
returnAll?: boolean;
subject?: string;
subjectPart?: string;
successRedirectionURL?: string;
templateContent?: string;
templateDataUi?: {
templateDataValues: {
key?: string;
value?: string;
}[];
};
templateName?: string;
templateSubject?: string;
toAddresses?: string;
updateFields?: | {
failureRedirectionURL?: string;
fromEmailAddress?: string;
successRedirectionURL?: string;
templateContent?: string;
templateSubject?: string;
}
| {
htmlPart?: string;
subjectPart?: string;
textPart?: string;
};
}
Properties§
Source§readonly additional Fields?:
| { configurationSetName?: string }
| {
bccAddresses?: string;
ccAddresses?: string;
configurationSetName?: string;
replyToAddresses?: string;
returnPath?: string;
returnPathArn?: string;
sourceArn?: string;
}
| { textPart?: string }
readonly additional Fields?:
| { configurationSetName?: string }
| {
bccAddresses?: string;
ccAddresses?: string;
configurationSetName?: string;
replyToAddresses?: string;
returnPath?: string;
returnPathArn?: string;
sourceArn?: string;
}
| { textPart?: string }
Source§readonly failure Redirection URL?: string
readonly failure Redirection URL?: string
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified
Source§readonly from Email Address?: string
readonly from Email Address?: string
The email address that the custom verification email is sent from
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 20 Type options: {"minValue":1}
Source§readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "send"
| "sendTemplate"
readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "send"
| "sendTemplate"
Default: "create"
Source§readonly success Redirection URL?: string
readonly success Redirection URL?: string
The URL that the recipient of the verification email is sent to if his or her address is successfully verified
Source§readonly template Content?: string
readonly template Content?: string
The content of the custom verification email. The total size of the email must be less than 10 MB. The message body may contain HTML
Source§readonly template Data Ui?: { templateDataValues: { key?: string; value?: string }[] }
readonly template Data Ui?: { templateDataValues: { key?: string; value?: string }[] }
Default: {} Type options: {"multipleValues":true}
Default: {}