You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/email-service/api/send-emails/rest-api.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ sidebar:
7
7
8
8
import { Tabs, TabItem } from"~/components";
9
9
10
-
The REST API allows you to send emails from any application using standard HTTP requests. Use it from any backend, serverless function, or CI/CD pipeline — no Cloudflare Workers binding required.
10
+
The REST API allows you to send emails from any application using standard HTTP requests. Use it from any backend, serverless function, or CI/CD pipeline — no Cloudflare Workers binding is required.
11
11
12
12
For the full OpenAPI specification, refer to the [Email Sending API reference](https://developers.cloudflare.com/api/resources/email_sending/methods/send).
13
13
@@ -143,9 +143,9 @@ A successful response returns the delivery status for each recipient:
143
143
}
144
144
```
145
145
146
-
-`delivered` - Email addresses to which the message was delivered immediately.
147
-
-`permanent_bounces` - Email addresses that permanently bounced.
148
-
-`queued` - Email addresses for which delivery was queued for later.
146
+
-`delivered` - Email addresses to which the message was delivered immediately
147
+
-`permanent_bounces` - Email addresses that permanently bounced
148
+
-`queued` - Email addresses for which delivery was queued for later
Copy file name to clipboardExpand all lines: src/content/docs/email-service/concepts/email-lifecycle.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ flowchart LR
36
36
-**SPF (Sender Policy Framework)**: Verifies that the sending IP address is authorized to send emails for the domain by checking DNS TXT records. This prevents domain spoofing and improves deliverability.
37
37
-**DKIM (DomainKeys Identified Mail)**: Validates the email's cryptographic signature to ensure message integrity and authenticate the sender domain. This builds trust with recipient servers.
38
38
-**DMARC (Domain-based Message Authentication)**: Applies domain owner policies for handling emails that fail SPF or DKIM checks, helping prevent phishing and brand impersonation while providing feedback reports.
39
-
39
+
40
40
These authentication mechanisms work together to establish sender legitimacy and protect against email fraud. Senders with low reputation scores may experience throttling or delayed processing.
41
41
42
42
4.**Suppression list check:** The system checks the recipient against global suppression lists that include bounces, complaints, and unsubscribes. Recipients found on these lists are blocked from receiving the email.
Copy file name to clipboardExpand all lines: src/content/docs/email-service/concepts/suppressions.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ sidebar:
9
9
10
10
import { Tabs, TabItem } from"~/components";
11
11
12
-
Suppression lists prevent emails from being sent to addresses that shouldn't receive them, protecting your sender reputation and ensuring compliance with anti-spam regulations.
12
+
Suppression lists prevent emails from being sent to addresses that should not receive them, protecting your sender reputation and ensuring compliance with anti-spam regulations.
13
13
14
14
## Suppression lists
15
15
@@ -41,7 +41,7 @@ Cloudflare will automatically add email addresses to your account suppression li
41
41
42
42
You may also manually add or remove email addresses from your suppression list as needed. The removal of email addresses that have been automatically added to your suppression list as a result of a spam complaint is limited to avoid abuse.
43
43
44
-
## How does Email Service's automatic suppression work
Copy file name to clipboardExpand all lines: src/content/docs/email-service/configuration/email-routing-addresses.mdx
+20-6Lines changed: 20 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ sidebar:
5
5
order: 1
6
6
---
7
7
8
+
import {DashButton} from"~/components";
9
+
8
10
In Email routing, an email rule is a pair of a custom email address and a destination address, or a custom email address and an associated Worker. You can route emails to either:
9
11
10
12
- Verified email addresses
@@ -16,6 +18,9 @@ This allows you to route emails to your preferred inbox, or apply logic with Wor
16
18
17
19
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/) and select your account and domain.
18
20
2. Go to **Email** > **Email Routing** > **Routes**.
3. In **Custom addresses**, identify the email rule you want to pause, and toggle the status button to **Disabled**.
48
56
49
57
Your email rule is now disabled. It will not forward emails to a destination address or Worker. To forward emails again, toggle the email rule status button to **Active**.
50
58
51
59
### Edit custom addresses
52
60
53
-
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/) and select your account and domain.
54
-
2. Go to **Email** > **Email Routing** > **Routes**.
61
+
1. In the Cloudflare dashboard, go to **Email Routing**.
0 commit comments