Skip to content

Commit

Permalink
Update send-helper.md
Browse files Browse the repository at this point in the history
I made the correction you requested and also added another value to send, I just made use of it.
  • Loading branch information
lennyAiko authored Apr 13, 2024
1 parent a9d6adf commit 2f63e86
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/mail/send-helper.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,15 @@ sails.helpers.mail.send.with({ toName: 'Jack Sparrow' })

## cc

The list of names to send a carbon copy of the mail to.
The email addresses to send a carbon copy of the mail to.

```js
sails.helpers.mail.send.with({ cc: ['jack@blackpearl.com'] })
```

## bcc

The email addresses to send a blind carbon copy of the mail to.

```js
sails.helpers.mail.send.with({ cc: ['jack@blackpearl.com'] })
Expand Down

0 comments on commit 2f63e86

Please sign in to comment.