diff --git a/docs/mail/send-helper.md b/docs/mail/send-helper.md index d0f4751..0f64e74 100644 --- a/docs/mail/send-helper.md +++ b/docs/mail/send-helper.md @@ -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'] })