-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sails-mail): add transport for cc and bcc
- Loading branch information
1 parent
6386a5e
commit 4c0652c
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,15 +59,15 @@ The name of the primary recipient | |
sails.helpers.mail.send.with({ toName: 'Jack Sparrow' }) | ||
``` | ||
|
||
## `cc` | ||
## `cc` <Badge>SMTP</Badge> <Badge>Resend</Badge> | ||
|
||
The email addresses to send a carbon copy of the mail to. | ||
|
||
```js | ||
sails.helpers.mail.send.with({ cc: ['[email protected]'] }) | ||
``` | ||
|
||
## `bcc` | ||
## `bcc` <Badge>SMTP</Badge> <Badge>Resend</Badge> | ||
|
||
The email addresses to send a blind carbon copy of the mail to. | ||
|
||
|