From 0094ba34b625b2b472a8846458bc2559439326cd Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Tue, 1 Nov 2022 12:11:00 +0100 Subject: [PATCH] Typo --- docs/guide/webhooks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/webhooks.md b/docs/guide/webhooks.md index af92d83..4233831 100644 --- a/docs/guide/webhooks.md +++ b/docs/guide/webhooks.md @@ -42,7 +42,7 @@ All webhook event bodies have two properties: `to` | String | To email address, may be a comma separated list if multiple recipients provided | Yes | `htmlbody` | String | HTML body in email | Yes | `textbody` | String | Text body in email| Yes | -`cc` | String | Carbon Coop email address, may be a comma separated list if multiple recipients provided | Yes | +`cc` | String | Carbon Copy email address, may be a comma separated list if multiple recipients provided | Yes | `bcc` | String | Blind Carbon Copy email address, may be a comma separated list if multiple recipients provided| Yes | `subject` | String | Email subject | Yes | `replyto` | String | Reply to address | Yes | @@ -109,4 +109,4 @@ verify_key = Ed25519::VerifyKey.new(Base64.strict_decode64(verify_key_base64)) message = request.raw_post verify_key.verify(signature, message) # True if verification passed! -``` \ No newline at end of file +```