Skip to content

Commit d08df60

Browse files
author
Kaylyn Sigler
committed
fixing some oops
1 parent 7786649 commit d08df60

Some content is hidden

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

55 files changed

+627
-105
lines changed

content/docs/for-developers/partners/azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ completion();
229229
230230
``` objc
231231
// Populate the parameters for the SendGrid Web API Call
232-
// Find more details about the [Web API here](https://sendgrid.com/docs/API_Reference/Web_API/index.html).
232+
// Find more details about the [Web API here]({{root_url}}/api-reference/).
233233
NSString *username = @"<Your SendGrid Username>";
234234
NSString *apikey = @"<Your SendGrid Password>";
235235
NSString *to = @"<Email to Playlist Service from Appendix A>";

content/docs/for-developers/partners/magento.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Learn more about your shoppers’ engagement with performance feedback and real-
5555
* Flexible API and SMTP setup for for easy transactional email Integration.
5656
* Key email deliverability features including email authentication, reputation monitoring, dedicated IP addresses, and more.
5757
* Real-time analytics and reporting including opens, clicks, bounces, unsubscribe tracking, and more.
58-
* Leverage our step-by-step [documentation](https://sendgrid.com/docs/API_Reference) or get quick help from our [24/7 Support Team](https://support.sendgrid.com).
58+
* Leverage our step-by-step [documentation](https://sendgrid.com/docs/api-reference/) or get quick help from our [24/7 Support Team](https://support.sendgrid.com).
5959
* This official extension was built for M2 by SendGrid’s dedicated partner-focused teams for continued management and future development.
6060

6161
## Configuration

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,4 @@ This is a full list of basic query types and examples: (replace the data in quot
270270
## Additional Resources
271271

272272
- [Email Activity Feed API Reference](https://sendgrid.api-docs.io/v3.0/email-activity/filter-all-messages)
273-
- [Email Activity Feed UI](https://sendgrid.com/docs/API_Reference/help-support/analytics-and-reporting/email-activity-feed.html)
273+
- [Email Activity Feed UI]({{root_url}}/help-support/analytics-and-reporting/email-activity-feed/)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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](https://sendgrid.com/docs/API_Reference/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.html) 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](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/whitelabel.html#-List):
7777

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
seo:
3+
title: How can I schedule emails to send at specific times?
4+
description: How can I schedule emails to send at specific times?
5+
keywords: drip, newsletter, email, future, automate, automated, delay, schedule, delivery
6+
title: How can I schedule emails to send at specific times?
7+
group: api-v3
8+
weight: 0
9+
layout: page
10+
zendesk_id: 204820097
11+
navigation:
12+
show: true
13+
---
14+
15+
There are 3 easy ways to schedule your emails; use [Marketing Campaigns]({{root_url}}/help-support/sending-email/how-to-send-email/), use the [SMTP API]({{root_url}}/for-developers/sending-email/scheduling-parameters/) header, or use the API.
16+
17+
<call-out>
18+
19+
If you have the flexibility, it's better to schedule mail for off-peak times. Most emails are scheduled and sent at the top of the hour or half hour. Scheduling email to avoid those times (for example, scheduling at 10:53) can result in lower deferral rates because it won't be going through our servers at the same times as everyone else's mail.
20+
21+
</call-out>
22+
23+
#1. Marketing Campaigns
24+
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.
25+
26+
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).
27+
28+
#2. API
29+
<<<<<<< HEAD
30+
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]({{root_url}}/api-reference/.html). For more information about scheduling and stopping scheduled sends with the API, see [Can I Stop a Scheduled Send]({{root_url}}/Classroom/Send/When_Emails_Are_Sent/can_i_stop_a_scheduled_send.html).
31+
=======
32+
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/). 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/).
33+
>>>>>>> upstream/a-new-hope-episode-iv
34+
35+
36+
#3. SMTP API
37+
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.
38+
39+
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.
40+
41+
Here's an example of how this timestamp might look in your SMTP API JSON header.
42+
43+
**{ "send\_at": 1409348513 }**
44+

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ navigation:
1515

1616
The [v3 Mail Send endpoint](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html) is the latest version of SendGrid’s Web API endpoint that allows you to send email by making a simple HTTP request. The introduction of the v3 Mail Send endpoint signifies the completion of our RESTful Web API v3.
1717

18-
If you’re looking for one of the other methods that you can use to send mail through SendGrid, please see our [SMTP-Relay](https://sendgrid.com/docs/API_Reference/Integrate/index.html#-SMTP-Relay), [Marketing Campaigns]({{root_url}}/help-support/sending-email/how-to-send-email/) feature, or [Web API v2](https://sendgrid.com/docs/API_Reference/Web_API/mail.html).
18+
If you’re looking for one of the other methods that you can use to send mail through SendGrid, please see our [SMTP]({{root_url}}/for-developers/sending-email/getting-started-smtp/), [Marketing Campaigns]({{root_url}}/help-support/sending-email/how-to-send-email/) feature, or [Web API v2](https://sendgrid.com/docs/API_Reference/Web_API/mail.html).
1919

2020
## Do I have to have a certain type of account to use the v3 Mail Send endpoint?
2121

content/docs/for-developers/sending-email/zapier-sending-for-gravity-forms-submissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You will need:
2929

3030
To connect your Gravity Forms account to Zapier, you will need the Gravity Forms plugin with the Zapier add-on installed. You will also need a form created in Gravity forms. To get started with Gravity forms, and for information on creating forms and installing the add-ons that you will need, check [here](https://www.gravityhelp.com/documentation/article/getting-started/). Information for getting started with Gravity Forms on Zapier can be found [here](https://zapier.com/help/gravity-forms/#how-get-started-gravity-forms).
3131

32-
To link your Gravity Forms to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/API_Reference/index.html). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
32+
To link your Gravity Forms to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/api-reference/). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
3333

3434

3535
### Connecting your accounts<a name="connect"></a>

content/docs/for-developers/sending-email/zapier-sending-for-new-webhook-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You will need:
2727

2828
To establish a Webhook on Zapier, you will need only your Zapier account. Zapier will set up a custom Webhook url, for information on how to get started using these Webhooks, check [here](https://zapier.com/help/webhooks/#how-get-started-webhooks-zapier).
2929

30-
To link your Webhooks on Zapier to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/API_Reference/index.html). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
30+
To link your Webhooks on Zapier to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/api-reference/). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
3131

3232
### Connecting your accounts<a name="connect"></a>
3333

content/docs/for-developers/sending-email/zapier-sending-for-postgre-sql-row-matches.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You will need:
2929

3030
To connect your PostgreSQL account to Zapier you will need an active PostgreSQL, and a database that you wish to pull data from. To get started with PostgreSQL, including information on how to install the program and how to create a database, go [here](http://www.postgresql.org/docs/9.4/static/tutorial-start.html). You can learn more about getting started with PostgreSQL on Zapier, [here](https://zapier.com/help/postgresql/#how-get-started-postgresql).
3131

32-
To link your PostgreSQL to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/API_Reference/index.html). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
32+
To link your PostgreSQL to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/api-reference/). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
3333

3434
### Connecting your accounts<a name="connect"></a>
3535

content/docs/for-developers/sending-email/zapier-sending-from-google-sheet-rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You will need:
2929

3030
To connect your Google Sheets to Zapier, make sure [you have created a new sheet for this purpose](http://www.gcflearnfree.org/googlespreadsheets/8.2). You can learn more about getting started with Google Sheets on Zapier, [here](https://zapier.com/help/google-sheets/#how-get-started-google-sheets-zapier).
3131

32-
To link your Google Sheets to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/API_Reference/index.html). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
32+
To link your Google Sheets to SendGrid, you must have an active SendGrid account. To learn more about getting started with SendGrid basics, start [here](https://sendgrid.com/docs/api-reference/). For more information about getting started with SendGrid on Zapier, go [here](https://zapier.com/help/sendgrid/#how-get-started-sendgrid).
3333

3434
### Connecting your accounts<a name="connect"></a>
3535

0 commit comments

Comments
 (0)