mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
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:
parent
aea3c50131
commit
40dc5a0d85
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue