diff --git a/docs/mail/send-helper.md b/docs/mail/send-helper.md index 58b059e..b100022 100644 --- a/docs/mail/send-helper.md +++ b/docs/mail/send-helper.md @@ -59,6 +59,22 @@ The name of the primary recipient sails.helpers.mail.send.with({ toName: 'Jack Sparrow' }) ``` +## cc + +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'] }) +``` + ## subject The subject of the email.