docs(Send Email Node): Add description to Email Format (no-changelog) (#7667)

Github issue / Community forum post (link here to close automatically):

Co-authored-by: Marcus <marcus@n8n.io>
This commit is contained in:
Giulio Andreini 2023-11-09 17:09:01 +01:00 committed by GitHub
parent aea3c50131
commit 40dc5a0d85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,14 +51,17 @@ const properties: INodeProperties[] = [
{ {
name: 'Text', name: 'Text',
value: 'text', value: 'text',
description: 'Send email as plain text',
}, },
{ {
name: 'HTML', name: 'HTML',
value: 'html', value: 'html',
description: 'Send email as HTML',
}, },
{ {
name: 'Both', name: 'Both',
value: 'both', value: 'both',
description: "Send both formats, recipient's client selects version to display",
}, },
], ],
default: 'html', default: 'html',