We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1921fe commit 60879d2Copy full SHA for 60879d2
2 files changed
integrations/sendgrid/integration.definition.ts
@@ -12,7 +12,7 @@ import {
12
export default new IntegrationDefinition({
13
name: 'sendgrid',
14
title: 'SendGrid',
15
- version: '0.1.6',
+ version: '0.1.7',
16
readme: 'hub.md',
17
icon: 'icon.svg',
18
description: 'Send markdown rich-text emails using the SendGrid email service.',
integrations/sendgrid/src/actions/send-mail.ts
@@ -11,11 +11,11 @@ export const sendMail: bp.IntegrationProps['actions']['sendMail'] = async ({ ctx
11
personalizations: [
{
to: input.to,
+ cc: input.cc,
+ bcc: input.bcc,
},
],
from: input.from,
- cc: input.cc,
- bcc: input.bcc,
19
replyTo: input.replyTo,
20
subject: input.subject,
21
html: markdownToHtml(input.body),
0 commit comments