Skip to content

Commit 644ea1a

Browse files
author
Kaylyn Sigler
committed
formatting issues and fixing links
1 parent d6ec5ae commit 644ea1a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+58
-68
lines changed

content/docs/for-developers/sending-email/api-getting-started.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Curl comes standard on Mac operating systems.
3535

3636
Your API call must have the following components:
3737

38-
* A Host. The host for Web API v3 requests is always https://sendgrid.com/v3/
38+
* A Host. The host for Web API v3 requests is always `https://api.sendgrid.com/v3/`
3939
* An [Authorization Header](https://sendgrid.api-docs.io/v3.0/how-to-use-the-sendgrid-v3-api/api-authentication#authorization-header)
4040
* An [API Key]({{root_url}}/help-support/account-and-settings/api-keys/) within the Authorization Header
4141
* A Request. When submitting data to a resource via POST or PUT, you must submit your payload in JSON.
@@ -49,7 +49,8 @@ curl --request POST \
4949
--url https://api.sendgrid.com/v3/mail/send \
5050
--header 'authorization: Bearer <<YOUR_API_KEY>>' \
5151
--header 'content-type: application/json' \
52-
--data '{"personalizations":[{"to":[{"email":"john.doe@example.com","name":"John Doe"}],"subject":"Hello, World!"}],"from":{"email":"sam.smith@example.com","name":"Sam Smith"},"reply_to":{"email":"sam.smith@example.com","name":"Sam Smith"}}'```
52+
--data '{"personalizations":[{"to":[{"email":"john.doe@example.com","name":"John Doe"}],"subject":"Hello, World!"}],"from":{"email":"sam.smith@example.com","name":"Sam Smith"},"reply_to":{"email":"sam.smith@example.com","name":"Sam Smith"}}'
53+
```
5354

5455
1. Copy the curl example above.
5556
2. Paste the curl call into your favorite text editor.
@@ -61,7 +62,7 @@ curl --request POST \
6162

6263
<call-out>
6364

64-
If you have not yet set up [Sender Authentication]({{root_url}}/help-support/sending-email/how-to-set-up-domain-authentication.html) in your account, you may need to check your spam folder for the email you just sent.
65+
If you have not yet set up [Sender Authentication]({{root_url}}/help-support/sending-email/how-to-set-up-domain-authentication/) in your account, you may need to check your spam folder for the email you just sent.
6566

6667
</call-out>
6768

@@ -74,5 +75,5 @@ All responses are returned in JSON format. We specify this by sending the ``Cont
7475
For more information on SendGrid and where you can go from here, check out these pages:
7576

7677
- [API Reference]({{root_url}}/api-reference/)
77-
- [Sender Authentication]({{root_url}}/help-support/sending-email/how-to-set-up-domain-authentication.html)
78-
- [How to Send Email]({{root_url}}/help-support/sending-email/how-to-send-email.html)
78+
- [Sender Authentication]({{root_url}}/help-support/sending-email/how-to-set-up-domain-authentication/)
79+
- [How to Send Email]({{root_url}}/help-support/sending-email/how-to-send-email/)

content/docs/for-developers/sending-email/building-an-smtp-email.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Categories should only be used for broad topics. To attach unique identifiers, p
177177

178178
### Unique Arguments
179179

180-
Use unique arguments to track your emails based on specific identifiers unique to individual messages. Unique arguments can be retrieved via SendGrid's [Event Webhook]({{root_url}}/for-developers/tracking-events/event.html) or your [email activity page]({{root_url}}/help-support/analytics-and-reporting/email-activity-feed.html).
180+
Use unique arguments to track your emails based on specific identifiers unique to individual messages. Unique arguments can be retrieved via SendGrid's [Event Webhook]({{root_url}}/for-developers/tracking-events/event/) or your [email activity page]({{root_url}}/help-support/analytics-and-reporting/email-activity-feed/).
181181

182182
For more information, see our [unique arguments documentation]({{root_url}}/for-developers/sending-email/unique-arguments/).
183183

content/docs/for-developers/sending-email/how-to-create-a-subuser-with-the-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ navigation:
1212
show: true
1313
---
1414

15-
<center>Creating a new subuser through SendGrid's API is a multi-step process. This guide will walk you through the necessary steps in order to create a new subuser account using only API calls.</center>
15+
Creating a new subuser through SendGrid's API is a multi-step process. This guide will walk you through the necessary steps in order to create a new subuser account using only API calls.
1616

1717
## Establish the New Subuser (required)
1818

@@ -71,7 +71,7 @@ When defining this call's 'set' parameter, you have a few options for appending
7171

7272
## Assign a domain authentication for the Subuser Account (optional)
7373

74-
After you have created the subuser account and have appended an IP address, you are now ready to assign an _existing_ [authenticated domain]({{root_url}}/help-support/sending-email/how-to-set-up-domain-authentication.html) to the account. If you have not yet created the required records for authenticating your chosen domain then this step should be skipped.
74+
After you have created the subuser account and have appended an IP address, you are now ready to assign an _existing_ [authenticated domain]({{root_url}}/help-support/sending-email/how-to-set-up-domain-authentication/) to the account. If you have not yet created the required records for authenticating your chosen domain then this step should be skipped.
7575

7676
First, you should find out what authenticated domains you have associated with your account. This call will [list your available authenticated domains](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/whitelabel.html#list):
7777

content/docs/for-developers/sending-email/integrating-with-the-smtp-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Now that you've integrated, learn to [build SMTP email]({{root_url}}/for-develop
2626

2727
### SMTP Ports
2828

29-
- For an unencrypted or a [TLS connections]({{root_url}}/help-support/sending-email/ssl-vs-tls.html), use port `25`, `2525`, or `587`.
30-
- For a [SSL connections]({{root_url}}/help-support/sending-email/tls.html), use port `465`.
29+
- For an unencrypted or a [TLS connections]({{root_url}}/help-support/sending-email/ssl-vs-tls/), use port `25`, `2525`, or `587`.
30+
- For a [SSL connections]({{root_url}}/help-support/sending-email/tls/), use port `465`.
3131

3232
### Rate limits
3333

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ If you have the flexibility, it's better to schedule mail for off-peak times. Mo
2020

2121
</call-out>
2222

23-
#1. Marketing Campaigns
23+
## 1. Marketing Campaigns
2424
If you are using Marketing Campaigns, you can schedule a time to send your campaign from the Settings tab by turning Off the option to Send Immediately. Next, verify that you are using the the correct time zone, and then simply choose the date and time that you would like to send your campaign at.
2525

2626
You can also schedule your campaigns with the [Marketing Campaigns API](https://sendgrid.com/docs/API_Reference/Web_API_v3/Marketing_Campaigns/campaigns.html#Schedule-a-Campaign-POST).
2727

28-
#2. API
28+
## 2. API
2929
You can you can schedule a time to send your email by using the the `send_at` object of the `POST /mail/send` method of the [V3 API](https://sendgrid.com/docs/API_Reference/api-reference). For more information about scheduling and stopping scheduled sends with the API, see [Can I Stop a Scheduled Send]({{root_url}}/for-developers/sending-email/stopping-a-secheduled-send/).
3030

3131

32-
#3. SMTP API
32+
## 3. SMTP API
3333
You can use the [SMTP API]({{root_url}}/for-developers/sending-email/scheduling-parameters/) header to schedule your emails when sending via [SMTP]({{root_url}}/for-developers/sending-email/getting-started-smtp/) or our [mail.send API endpoint](https://sendgrid.com/docs/API_Reference/Web_API/mail.html). SendGrid will allow you to queue batches of emails targeting individual recipients by using a UNIX time stamp parameter in your SMTP API header.
3434

3535
This parameter allows SendGrid to begin processing your email requests before sending. SendGrid will then queue those messages and release them when the specified time rolls around.

content/docs/for-developers/sending-email/smtp-go-code-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
weight: 0
4-
title: Go
4+
title: SMTP Go Code Example
55
group: smtp
66
navigation:
77
show: true

content/docs/for-developers/sending-email/smtp-nodejs-code-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
weight: 0
4-
title: Node.js
4+
title: SMTP Node.js Code Example
55
group: smtp
66
navigation:
77
show: true

content/docs/for-developers/sending-email/smtp-perl-code-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
weight: 0
4-
title: Perl
4+
title: SMTP Perl Code Example
55
group: smtp
66
navigation:
77
show: true

content/docs/for-developers/sending-email/smtp-php-code-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
weight: 0
4-
title: PHP
4+
title: SMTP PHP Code Example
55
group: smtp
66
navigation:
77
show: true

content/docs/for-developers/sending-email/smtp-python-code-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
weight: 0
4-
title: Python
4+
title: SMTP Python Code Example
55
group: smtp
66
navigation:
77
show: true

0 commit comments

Comments
 (0)