interface EmailSendV1NodeParameters {
attachments?: string;
bccEmail?: string;
ccEmail?: string;
fromEmail?: string;
html?: string;
options?: {
allowUnauthorizedCerts?: boolean;
replyTo?: string;
};
subject?: string;
text?: string;
toEmail?: string;
}
Name of the binary properties that contain data to add to email as attachment. Multiple ones can be comma-separated.