Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiezane committed May 7, 2015
1 parent 25f258d commit b2040d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -203,7 +203,7 @@ You can multiple CC addresses using `setCcs`.

```javascript
var email = new sendgrid.Email();
email.setCcs(['foo@bar.com', 'another@another.com');
email.setCcs(['foo@bar.com', 'another@another.com']);
sendgrid.send(email, function(err, json) { });
```

Expand All @@ -224,7 +224,7 @@ You can multiple BCC addresses using `setBccs`.

```javascript
var email = new sendgrid.Email();
email.setBccs(['foo@bar.com', 'another@another.com');
email.setBccs(['foo@bar.com', 'another@another.com']);
sendgrid.send(email, function(err, json) { });
```

Expand Down

0 comments on commit b2040d3

Please sign in to comment.