mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(SendGrid Node): Add option to specify "reply to" email addresses (#14282)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user