Skip to content

Commit 3fa2975

Browse files
fixing anchor links
1 parent ff10a50 commit 3fa2975

21 files changed

+38
-52
lines changed

content/docs/for-developers/sending-email/personalizations.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ Below are some examples of how you can use personalizations for various use case
5757

5858
Personalization Examples Index
5959

60-
* [Sending a Single Email to a Single Recipient](#-Sending-a-Single-Email-to-a-Single-Recipient)
61-
* [Sending a Single Email to a Single Recipient with a CC](#-Sending-a-Single-Email-to-a-Single-Recipient-With-a-CC)
62-
* [Sending a Single Email to a Single Recipient with a CC and a BCC](#-Sending-a-Single-Email-to-a-Single-Recipient-With-a-CC-and-a-BCC)
63-
* [Sending a Single Email to Multiple Recipients](#-Sending-the-same-Email-to-Multiple-Recipients)
64-
* [Sending a Single Email to a Single Recipient with Multiple CCs/BCCs](#-Sending-a-Single-Email-to-a-Single-Recipient-With-Multiple-CCs/BCCs)
65-
* [Sending Two Different Emails to Two Different Groups of Recipients](#-Sending-Two-Different-Emails-to-Two-Different-Groups-of-Recipients)
60+
* [Sending a Single Email to a Single Recipient](#sending-a-single-email-to-a-single-recipient)
61+
* [Sending a Single Email to a Single Recipient with a CC](#sending-a-single-email-to-a-single-recipient-with-a-cc)
62+
* [Sending a Single Email to a Single Recipient with a CC and a BCC](#sending-a-single-email-to-a-single-recipient-with-a-cc-and-a-bcc)
63+
* [Sending a Single Email to Multiple Recipients](#sending-the-same-email-to-multiple-recipients)
64+
* [Sending a Single Email to a Single Recipient with Multiple CCs/BCCs](#sending-a-single-email-to-a-single-recipient-with-multiple-ccs/bccs)
65+
* [Sending Two Different Emails to Two Different Groups of Recipients](#sending-two-different-emails-to-two-different-groups-of-recipients)
6666

6767
## Sending a Single Email to a Single Recipient
6868

content/docs/for-developers/sending-email/section-tags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ navigation:
1212
---
1313

1414
Section tags allow you to substitute in content in an SMTP message. Section tags are similar to [substitution tags]({{root_url}}/for-developers/sending-email/substitution-tags/) but are specific to the message, and not the recipient. You have to have a substitution tag value for **each** recipient, but you can have any number of section tags. Section tags can then contain Substitution tags for the recipient if needed. Section tags have to be contained within a Substitution tag since SendGrid needs to know which data to populate for the recipient.
15-
See the [Section Tag Example Walkthrough](#-Section-Tag-Example-Walkthrough) below.
15+
See the [Section Tag Example Walkthrough](#section-tag-example-walkthrough) below.
1616

1717
It's possible & acceptable to use only Substitution tags. However, that method is not [DRY](http://en.wikipedia.org/wiki/Don%27t_repeat_yourself), and you may come against [message size limitations]({{root_url}}/help-support/sending-email/how-to-send-email/).
1818

content/docs/for-developers/sending-email/smtp-filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ If you don't use 'replace' this will insert an <code>&lt;img&gt;</code> tag at t
343343
<tr>
344344
<td>url</td>
345345
<td><code>url</code></td>
346-
<td>an optional url to POST the email and a copy of the report to. Refer to the <a href="{{root_url}}/help-support/account-and-settings/mail/#-Spam-Checker">Spam Checker documentation</a> for POST details.</td>
346+
<td>an optional url to POST the email and a copy of the report to. Refer to the <a href="{{root_url}}/help-support/account-and-settings/mail/#spam-checker">Spam Checker documentation</a> for POST details.</td>
347347
</tr>
348348
</tbody>
349349
</table>

content/docs/for-developers/sending-email/v3-mail-send-faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ The v3 Mail Send endpoint offers many improvements over the v2 endpoint, and we
2727

2828
## How do I migrate from V2 to V3?
2929

30-
If you are currently using the v2 Mail Send endpoint, we have provided some [helpful instructions]({{root_url}}/for-developers/sending-email/migrating-from-v2-to-v3-mail-send/) on how to migrate from sending mail over the Web API v2 to the Web API v3.
30+
If you are currently using the v2 Mail Send endpoint, we have provided some [helpful instructions]({{root_url}}/for-developers/sending-email/migrating-from-v2-to-v3-mail-send/integrating-with-the-smtp-api/) on how to migrate from sending mail over the Web API v2 to the Web API v3.
3131

3232
## What’s the difference between sending mail via SMTP and the Web API?
3333

34-
Sending email via the [SMTP-Relay]({{root_url}}/Integrate/index.html#-SMTP-Relay) is a quick and simple way to integrate your existing SMTP code with SendGrid’s email functionality. All you have to do is modify your SMTP configuration to point to SendGrid’s SMTP server and your email will be routed through SendGrid’s SMTP-Relay. You may then specify special instructions for how you would like SendGrid to handle your email by means of the [X-SMTPAPI header]({{root_url}}/for-developers/sending-email/building-an-smtp-email/).
34+
Sending email via the [SMTP-Relay]({{root_url}}/for-developers/sending-email/) is a quick and simple way to integrate your existing SMTP code with SendGrid’s email functionality. All you have to do is modify your SMTP configuration to point to SendGrid’s SMTP server and your email will be routed through SendGrid’s SMTP-Relay. You may then specify special instructions for how you would like SendGrid to handle your email by means of the [X-SMTPAPI header]({{root_url}}/for-developers/sending-email/building-an-smtp-email/).
3535

3636
The Web API, on the other hand, requires you to make an HTTP request to an endpoint in SendGrid’s API. Previously, SendGrid has only offered a mail sending endpoint in the Web API v2, but now you can use the RESTful Web API v3 to send your email. Simply make an `HTTP POST` request to `https://api.sendgrid.com/v3/mail/send` with the data for your email included in a JSON payload. For more information, please visit our [v3 Mail Send documentation](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html).
3737

content/docs/for-developers/sending-email/wordpress-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ When using the SMTP method you must also define the `To` address. It does not ma
4343

4444
</call-out>
4545

46-
Emails are automatically tracked, allowing you to retrieve delivery and engagement statistics from within the SendGrid Dashboard. You can also specify certain [categories](#-How-to-Use-Categories) for any of your emails to help you organize them by type.
46+
Emails are automatically tracked, allowing you to retrieve delivery and engagement statistics from within the SendGrid Dashboard. You can also specify certain [categories](#how-to-use-categories) for any of your emails to help you organize them by type.
4747

4848
## Configuring SendGrid’s WordPress Plugin
4949

content/docs/help-support/analytics-and-reporting/category-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ You can also choose to show actual counts or percentages, by clicking the corres
5555

5656
- [Subusers]({{root_url}}/help-support/account-and-settings/subusers.html)
5757
- [Using Categories with the SMTP API]({{root_url}}/for-developers/sending-email/categories/))
58-
- [Statistics Filters]({{root_url}}/help-support/analytics-and-reporting/stats-overview.html#-Statistics-Filters)
58+
- [Statistics Filters]({{root_url}}/help-support/analytics-and-reporting/stats-overview.html#statistics-filters)

content/docs/help-support/analytics-and-reporting/click-tracking-ssl.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ SendGrid supports SSL enabled click and open tracking. This feature is enabled a
1818
In order for click and open tracking to work over SSL, SendGrid needs to present a valid certificate that will be trusted by the email recipient's browser. For whitelabeled domains, SendGrid is not able to request and/or manage certificates, as it is not the record owner for the domain.
1919

2020
To work around this restriction, you may use a CDN service, such as
21-
[CloudFlare]({{root_url}}/help-support/analytics-and-reporting/content-delivery-networks/#-Using-CloudFlare),
22-
[Fastly]({{root_url}}/help-support/analytics-and-reporting/content-delivery-networks/#-Using-Fastly), or
23-
[KeyCDN]({{root_url}}/help-support/analytics-and-reporting/content-delivery-networks/#-Using-KeyCDN) to manage certificates and keys for your domain. You can also setup [custom SSL configuration]({{root_url}}/help-support/account-and-settings/custom-ssl-configurations/). These services can then forward traffic onwards to SendGrid so that click and open tracking can be performed.
21+
[CloudFlare]({{root_url}}/help-support/analytics-and-reporting/content-delivery-networks/#using-cloudflare),
22+
[Fastly]({{root_url}}/help-support/analytics-and-reporting/content-delivery-networks/#using-fastly), or
23+
[KeyCDN]({{root_url}}/help-support/analytics-and-reporting/content-delivery-networks/#using-keycdn) to manage certificates and keys for your domain. You can also setup [custom SSL configuration]({{root_url}}/help-support/account-and-settings/custom-ssl-configurations/). These services can then forward traffic onwards to SendGrid so that click and open tracking can be performed.
2424

2525
Once you have followed the configuration guide for either of these
2626
services, please [contact support](https://support.sendgrid.com/hc/en-us) and they will enable SSL click and

content/docs/help-support/analytics-and-reporting/device.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The clients report breaks down which devices and clients are most frequently use
5151

5252
## Top 5
5353

54-
The top 5 section will show you the most engaged email clients and devices based on the selected metric. By default, clicks are select, but you can change that by choosing a metric from the button at the top of this section. You can change which metrics, date, or grouping by adjusting the [statistics filters]({{root_url}}/help-support/analytics-and-reporting/stats-overview/#-Statistics-Filters).
54+
The top 5 section will show you the most engaged email clients and devices based on the selected metric. By default, clicks are select, but you can change that by choosing a metric from the button at the top of this section. You can change which metrics, date, or grouping by adjusting the [statistics filters]({{root_url}}/help-support/analytics-and-reporting/stats-overview/#statistics-filters).
5555

5656
## Individual Metrics Activity
5757

@@ -71,5 +71,5 @@ You can also choose to show actual counts or percentages, by clicking the corres
7171

7272
## Additional Resources
7373

74-
- [Statistics Filters]({{root_url}}/help-support/analytics-and-reporting/stats-overview/#-Statistics-Filters)
74+
- [Statistics Filters]({{root_url}}/help-support/analytics-and-reporting/stats-overview/#statistics-filters)
7575
- [Subusers]({{root_url}}/help-support/account-and-settings/subusers/)

content/docs/help-support/analytics-and-reporting/email-activity-feed.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The email address field filters with an approximate, or fuzzy search. The date f
103103

104104
<call-out>
105105

106-
To filter by event type, like in the legacy Email Activity Feed, use [Advanced search](#-Advanced-search), and select Event Type, and choose an event type to filter by.
106+
To filter by event type, like in the legacy Email Activity Feed, use [Advanced search](#advanced-search), and select Event Type, and choose an event type to filter by.
107107

108108
</call-out>
109109

@@ -171,5 +171,5 @@ or
171171
- [Email Activity API](https://sendgrid.api-docs.io/v3.0/email-activity/filter-all-messages)
172172
- [Legacy Email Activity]({{root_url}}/help-support/analytics-and-reporting/email-activity/)
173173
- [Getting Started with the Email Activity API]({{root_url}}/for-developers/sending-email/getting-started-email-activity-api/)
174-
- [Building compound Email Activity queries]({{root_url}}/for-developers/sending-email/getting-started-email-activity-api/#-Creating-compound-queries)
174+
- [Building compound Email Activity queries]({{root_url}}/for-developers/sending-email/getting-started-email-activity-api/#creating-compound-queries)
175175

content/docs/help-support/analytics-and-reporting/email-activity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,15 @@ This deferral is created by SendGrid to control the rate of delivery by ISP to h
142142

143143
A drop occurs when you try to send a message to an email address listed on one of the suppression lists: Bounces, Unsubscribes, Spam reports and Invalid Emails. If an email is already on one of the lists, our systems automatically drop the email to protect your Sender Reputation.
144144

145-
A dropped message cannot be resent automatically. To resend a message, first [remove the email from the suppression list](#-Removing-an-email-from-a-suppression-list), and then recreate and resend the email.
145+
A dropped message cannot be resent automatically. To resend a message, first [remove the email from the suppression list](#removing-an-email-from-a-suppression-list), and then recreate and resend the email.
146146

147147
### Bounces
148148

149149
A bounce is a Drop event that occurs when a message to an address has previously Bounced.
150150

151151
You can visit the [Bounces list](https://app.sendgrid.com/suppressions/bounces) under the Suppressions tab, and search the address to find the details of the original attempt, such as the date and full error reason code. Once an address is on this list, we do not attempt to deliver further messages to it; we drop the message to protect your external reputation.
152152

153-
A bounced message cannot be resent automatically. To resend a message, first [remove the email from the suppression list](#-Removing-an-email-from-a-suppression-list), and then recreate and resend the email.
153+
A bounced message cannot be resent automatically. To resend a message, first [remove the email from the suppression list](#removing-an-email-from-a-suppression-list), and then recreate and resend the email.
154154

155155
<call-out>
156156

0 commit comments

Comments
 (0)