feat(SendGrid Node): Add option to specify "reply to" email addresses (#14282)

This commit is contained in:
Uri Levitsky
2025-03-31 21:20:37 +11:00
committed by GitHub
parent bfe3d469ea
commit 68d9460f2a
4 changed files with 110 additions and 0 deletions

View File

@@ -251,6 +251,15 @@ export const mailFields: INodeProperties[] = [
default: '',
description: 'The IP Pool that you would like to send this email from',
},
{
displayName: 'Reply-To Email',
name: 'replyToEmail',
type: 'string',
default: '',
placeholder: 'reply@domain.com',
description:
'Comma-separated list of email addresses that will appear in the reply-to field of the email',
},
{
displayName: 'Headers',
name: 'headers',
@@ -306,6 +315,7 @@ export type SendMailBody = {
}>;
ip_pool_name?: string;
from: EmailName;
reply_to_list?: EmailName[];
template_id?: string;
content?: Array<{
type: string;