Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
73914a2
Group Suppressions can trigger Webhook events
Apr 8, 2015
21be34d
Group Suppressions can trigger Webhook events pt 2
Apr 8, 2015
bd0cf1b
Too many See Alsos
Apr 11, 2015
ff3a26b
Merge pull request #1014 from sendgrid/mbernier-patch-7
Apr 11, 2015
2d34453
Merge pull request #1015 from sendgrid/mbernier-patch-6
Apr 11, 2015
455ff11
Adding subuser info block
Apr 11, 2015
c6b95a3
Added portal reputation information
Apr 11, 2015
117d934
Merge pull request #1017 from sendgrid/mbernier-patch-8
Apr 11, 2015
4086e6d
Merge pull request #1018 from sendgrid/mbernier-patch-9
Apr 11, 2015
43a762a
moved warning here, rather than Apps page
Apr 13, 2015
24ce3e5
Merge pull request #1021 from sendgrid/mbernier-patch-12
Apr 13, 2015
3851d59
This page doesn't belong here
Apr 13, 2015
753f49a
Merge pull request #1019 from sendgrid/mbernier-patch-10
Apr 13, 2015
aaecd29
Merge branch 'develop' into mbernier-patch-13
Apr 13, 2015
33253a1
removed link to blm page
Apr 13, 2015
b5356f8
Merge branch 'mbernier-patch-13' into develop
Apr 13, 2015
73961e6
Update filter_settings.md
Apr 14, 2015
4433a89
Add bounces POST warning
jacobmovingfwd Apr 15, 2015
38461b7
Merge pull request #1023 from sendgrid/event_api-unique_args-bounce_w…
Apr 15, 2015
284dd27
Update advanced.md
Apr 16, 2015
4fdc241
Changed display title
Apr 18, 2015
9aaa30c
Changed display title
Apr 18, 2015
e7cd45b
Changed display title
Apr 18, 2015
8069009
Changed display title
Apr 18, 2015
9bacfe1
Changed display title
Apr 18, 2015
0082fef
Issue #1024
Apr 20, 2015
8bb4250
Merge pull request #1029 from sendgrid/mbernier-patch-16
Apr 20, 2015
ab988bd
Merge pull request #1027 from sendgrid/mbernier-patch-18
Apr 20, 2015
1861bbd
Merge pull request #1028 from sendgrid/mbernier-patch-17
Apr 20, 2015
6933a00
Merge pull request #1030 from sendgrid/mbernier-patch-15
Apr 20, 2015
0aaf33e
Merge pull request #1031 from sendgrid/mbernier-patch-14
Apr 20, 2015
99c4a4c
Merge pull request #1032 from sendgrid/mbernier-patch-19
Apr 20, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions source/API_Reference/SMTP_API/apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
Filter: <code>bypass_list_management</code>
{% endanchor %}

{% warning %}
This app is very powerful, and can only be used on a per-message basis. Use with extreme caution.
{% endwarning %}

<p>Some emails are too important to do normal list management checks, such as password resets or critical alerts. Enabling this filter will bypass the normal unsubscribe / bounce / spam report checks and queue the e-mail for delivery.</p>

<table class="table table-striped table-bordered">
Expand Down
2 changes: 2 additions & 0 deletions source/API_Reference/SMTP_API/unique_arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ These arguments can then be seen in posts from the [SendGrid Event Webhook]({{ro
}
{% endcodeblock %}

{% warning %} There are a few cases where unique_args cannot be attached to the Event. Specifically Bounces that are returned via the Return-Path. Please keep this in mind when developing unique_args POST handling. {% endwarning %}

Unique Arguments will also be shown in the [Email Activity tab](https://sendgrid.com/logs/index) of your account.

To apply different unique arguments to individual emails, you may use [substitution tags]({{root_url}}/API_Reference/SMTP_API/substitution_tags.html). An example of this would look like:
Expand Down
2 changes: 1 addition & 1 deletion source/API_Reference/Web_API/filter_settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ SPAM Filter Checker
{% endparameters %}


{% apiexample spamcheck POST https://api.sendgrid.com/api/filter.setup api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=eventnotify&max_score=1.2&url=https://www.example.com/spamcheck.php %}
{% apiexample spamcheck POST https://api.sendgrid.com/api/filter.setup api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=spamcheck&max_score=1.2&url=https://www.example.com/spamcheck.php %}
{% response json %}
{
"message": "success"
Expand Down
6 changes: 3 additions & 3 deletions source/API_Reference/Web_API_v3/Stats/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,10 @@ Gets email statistics by email service provider (ESP).
{% parameter start_date Yes 'Date formatted as YYYY-MM-DD' 'The starting date of the statistics to retrieve' %}
{% parameter end_date No 'Date formatted as YYYY-MM-DD' 'The end date of the statistics to retrieve. Defaults to today.' %}
{% parameter aggregated_by No 'Must be day|week|month' 'How to group the statistics' %}
{% parameter esps No 'Array of strings' 'The ESPs to get statistics for, up to 10' %}
{% parameter mailbox_providers No 'Array of strings' 'The ESPs to get statistics for, up to 10' %}
{% endparameters %}

{% apiv3example get GET https://api.sendgrid.com/v3/esp/stats?start_date=2015-01-01&end_date=2015-01-02 %}
{% apiv3example get GET https://api.sendgrid.com/v3/mailbox_providers/stats?start_date=2015-01-01&end_date=2015-01-02 %}
{% v3response %}
HTTP/1.1 200
[
Expand Down Expand Up @@ -363,4 +363,4 @@ HTTP/1.1 200
}
]
{% endv3response %}
{% endapiv3example %}
{% endapiv3example %}
7 changes: 5 additions & 2 deletions source/API_Reference/Web_API_v3/Template_Engine/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ navigation:
show: true
---

The Template Engine API lets you programmatically create and manage
templates for your transactional email.
The Template Engine API lets you programmatically create and manage templates for your transactional email.

{% info %}
Each user can have up to 300 templates.
{% endinfo %}

{% info %}
Templates created in Template Engine are account and subuser specific. Templates created on a parent account will not be accessible from the subuser accounts.
{% endinfo %}

* * * * *

{% anchor h2 %}
Expand Down
11 changes: 11 additions & 0 deletions source/Glossary/sender_reputation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,14 @@ The Reputation score is a score about your email deliverability reputation score
- Consistent mailing volume

To achieve the highest reputation possible, we recommend that you have an opt-in process to the email addresses you send to, don’t purchase email lists, and continue to keep your lists clean.

{% anchor h2 %}
How is my reputation calculated?
{% endanchor %}

* Low bounce rates
* Very few spam complaints
* The ratio of invalid emails sent out
* Consistent mailing volume

To achieve the highest reputation possible, we recommend that you have an industry standard opt-in process, don't rent or buy email lists and always keep your lists clean.
2 changes: 1 addition & 1 deletion source/Integrate/Mail_Servers/exim.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $ /etc/init.d/exim4 restart
cPanel
{% endanchor %}

If you are using cPanel with Exim and want to relay your email through SendGrid, go to **Main \> Service Configuration \> Exim Configuration Editor**, click on the Advanced Editor button, and enter the following:
If you are using cPanel with Exim and want to relay your email through SendGrid, go to **Main \> Service Configuration \> Exim Configuration Editor**, click on the Advanced Editor button, and enter the following in the **AUTH** Box:

{% codeblock lang:bash %}
begin authenticators
Expand Down
42 changes: 0 additions & 42 deletions source/User_Guide/Apps/bypass_list_management.md

This file was deleted.

1 change: 0 additions & 1 deletion source/User_Guide/Apps/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<ul class="regular">
<li><a href="address_whitelisting.html"><strong>Address Whitelisting</strong></a>*</li>
<li><a href="bcc.html"><strong>BCC</strong></a>*</li>
<li><a href="bypass_list_management.html"><strong>Bypass List Management</strong></a>*</li>
<li><a href="click_tracking.html"><strong>Click Tracking</strong></a></li>
<li><a href="domain_keys.html"><strong>Domain Keys</strong></a></li>
<li><a href="dkim.html"><strong>DKIM</strong></a>*</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ When using ASM, a recipient clicking an unsubscribe link can choose which groups
You can manage your global unsubscribes via [Email Reports > Unsubscribes](https://sendgrid.com/unsubscribes) in the SendGrid portal.

{% info %}
Group Unsubscribes do not currently trigger [Event Webhook]({{root_url}}/API_Reference/Webhooks/event.html) events.
{% endinfo %}
Group Unsubscribes will trigger [Event Webhook]({{root_url}}/API_Reference/Webhooks/event.html) events.
{% endinfo %}
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ When using ASM, a recipient clicking an unsubscribe link can choose which groups
You can manage your global suppressions via [Email Reports > Unsubscribes](https://sendgrid.com/unsubscribes) in the SendGrid portal.

{% info %}
Group Suppressions do not currently trigger [Event Webhook]({{root_url}}/API_Reference/Webhooks/event.html) events.
{% endinfo %}
Group Suppressions will trigger [Event Webhook]({{root_url}}/API_Reference/Webhooks/event.html) events.
{% endinfo %}
4 changes: 2 additions & 2 deletions source/User_Guide/SendGrid_for_Mobile/dashboard.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
seo:
title: SendGrid for iPhone and iPad Dashboard
title: SendGrid for iPhone and iPad Dashboard
title: Dashboard
weight: 800
layout: page
navigation:
Expand All @@ -20,4 +20,4 @@ navigation:

The dashboard page will display your account’s statistics for the past day, week, or month. SendGrid offers a number of [Delivery Metrics]({{root_url}}/User_Guide/Delivery_Metrics/index.html) to report what is happening with your messages.

You can also export the statistics for each individual day to a CSV file by tapping the Share button.
You can also export the statistics for each individual day to a CSV file by tapping the Share button.
4 changes: 2 additions & 2 deletions source/User_Guide/SendGrid_for_Mobile/email_activity.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
seo:
title: SendGrid for iPhone and iPad Email Activity
title: SendGrid for iPhone and iPad Email Activity
title: Email Activity
weight: 700
layout: page
navigation:
Expand All @@ -22,4 +22,4 @@ Here you can view the realtime logs of all emails sent from your account in the

Tapping on any event will reveal more information, such as server responses or user-agents.

Finally, you can export your Email Activity by selecting the "More" button in the top right corner and selecting "Export". This will create a CSV that you can open in another app on your device.
Finally, you can export your Email Activity by selecting the "More" button in the top right corner and selecting "Export". This will create a CSV that you can open in another app on your device.
2 changes: 1 addition & 1 deletion source/User_Guide/SendGrid_for_Mobile/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: page
weight: 900
title: SendGrid for iPhone and iPad Overview
title: Overview
seo:
title: SendGrid for iPhone and iPad Overview
description: Read about the SendGrid iPhone mobile app and how to use it.
Expand Down
4 changes: 2 additions & 2 deletions source/User_Guide/SendGrid_for_Mobile/subusers.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
seo:
title: SendGrid for iPhone and iPad Subuser Management
title: SendGrid for iPhone and iPad Subuser Management
title: Subuser Management
weight: 500
layout: page
navigation:
Expand All @@ -28,4 +28,4 @@ Here you can view your current subusers and also "impersonate" them, allowing yo
The app currently only displays a maximum of 10 subusers. If you have more than 10 subusers, you can pull down and search for the username of a specific subuser not listed.
{% endinfo %}

Once you tap on a subuser, you'll be presented with a summary of the account's performance. You can then tap the "Impersonate User" button to "log in" as that subuser, and view the app as that subuser. When impersonating a subuser, you'll find a "Logged In As [subuser name]" banner along the top of the app. You'll also notice that the "Subuser Management" option in the side navigation menu changes to "Log Into Parent Account," which you can use to switch back to your main parent account.
Once you tap on a subuser, you'll be presented with a summary of the account's performance. You can then tap the "Impersonate User" button to "log in" as that subuser, and view the app as that subuser. When impersonating a subuser, you'll find a "Logged In As [subuser name]" banner along the top of the app. You'll also notice that the "Subuser Management" option in the side navigation menu changes to "Log Into Parent Account," which you can use to switch back to your main parent account.
4 changes: 2 additions & 2 deletions source/User_Guide/SendGrid_for_Mobile/suppression.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
seo:
title: SendGrid for iPhone and iPad Suppression Lists
title: SendGrid for iPhone and iPad Suppression Lists
title: Suppression Lists
weight: 600
layout: page
navigation:
Expand All @@ -24,4 +24,4 @@ Depending on the list you're viewing, you can tap on an address to get more info

If you're viewing the Unsubscribe list, you can hit the "+" button to manually add an address to the list.

Finally, if you want to search for a specific address, pull downwards on the list and type an address in the search field.
Finally, if you want to search for a specific address, pull downwards on the list and type an address in the search field.
2 changes: 1 addition & 1 deletion source/User_Guide/Transactional_Email/unsubscribes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ If you are sending email through SendGrid and have the [Subscription Tracking ap

The [Subscription Tracking app]({{root_url}}/User_Guide/Apps/subscription_tracking.html) also has a number of options for customization, such as a replacement tag that allows you to place the unsubscribe text somewhere in the body of the email, the ability to reword the unsubscribe message, and the ability to add a custom landing page.

See Also: See Also: [Marketing Email Unsubscribes]({{root_url}}/User_Guide/Marketing_Emails/unsubscribes.html)
See Also: [Marketing Email Unsubscribes]({{root_url}}/User_Guide/Marketing_Emails/unsubscribes.html)