diff --git a/source/API_Reference/SMTP_API/apps.html b/source/API_Reference/SMTP_API/apps.html index 4c7c8b1609..c44d7993e7 100644 --- a/source/API_Reference/SMTP_API/apps.html +++ b/source/API_Reference/SMTP_API/apps.html @@ -69,6 +69,10 @@ Filter: bypass_list_management {% endanchor %} +{% warning %} +This app is very powerful, and can only be used on a per-message basis. Use with extreme caution. +{% endwarning %} +

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.

diff --git a/source/API_Reference/SMTP_API/unique_arguments.md b/source/API_Reference/SMTP_API/unique_arguments.md index 2190ff2e3e..ec5b4f7fd5 100644 --- a/source/API_Reference/SMTP_API/unique_arguments.md +++ b/source/API_Reference/SMTP_API/unique_arguments.md @@ -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: diff --git a/source/API_Reference/Web_API/filter_settings.md b/source/API_Reference/Web_API/filter_settings.md index 2837cf5da1..8f26a7a939 100644 --- a/source/API_Reference/Web_API/filter_settings.md +++ b/source/API_Reference/Web_API/filter_settings.md @@ -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" diff --git a/source/API_Reference/Web_API_v3/Stats/advanced.md b/source/API_Reference/Web_API_v3/Stats/advanced.md index 6cc08ed374..c0ba4330b1 100644 --- a/source/API_Reference/Web_API_v3/Stats/advanced.md +++ b/source/API_Reference/Web_API_v3/Stats/advanced.md @@ -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 [ @@ -363,4 +363,4 @@ HTTP/1.1 200 } ] {% endv3response %} -{% endapiv3example %} \ No newline at end of file +{% endapiv3example %} diff --git a/source/API_Reference/Web_API_v3/Template_Engine/templates.md b/source/API_Reference/Web_API_v3/Template_Engine/templates.md index 082b2d9100..43b52d202e 100644 --- a/source/API_Reference/Web_API_v3/Template_Engine/templates.md +++ b/source/API_Reference/Web_API_v3/Template_Engine/templates.md @@ -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 %} diff --git a/source/Glossary/sender_reputation.md b/source/Glossary/sender_reputation.md index d11da62baa..aa4aa7f877 100644 --- a/source/Glossary/sender_reputation.md +++ b/source/Glossary/sender_reputation.md @@ -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. diff --git a/source/Integrate/Mail_Servers/exim.md b/source/Integrate/Mail_Servers/exim.md index 8d1920ecaf..ab2a938456 100644 --- a/source/Integrate/Mail_Servers/exim.md +++ b/source/Integrate/Mail_Servers/exim.md @@ -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 diff --git a/source/User_Guide/Apps/bypass_list_management.md b/source/User_Guide/Apps/bypass_list_management.md deleted file mode 100644 index c0dbe0c900..0000000000 --- a/source/User_Guide/Apps/bypass_list_management.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: page -weight: 0 -title: Bypass List Management -navigation: - show: true ---- - -{% warning %} -This app is very powerful, and can only be used on a per-message basis. Use with extreme caution. -{% endwarning %} - -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. - -{% anchor h2 %} -API Settings -{% endanchor %} - -
- - - - - - - - - - - - - - -
App NameSetting FieldDescription
bypass_list_managementenable - 0 to disable -
- 1 to enable -
- -Settings may be changed through: - -- [SMTP API]({{root_url}}/API_Reference/SMTP_API/apps.html#bypass_list_management) (on a per message basis) diff --git a/source/User_Guide/Apps/index.html b/source/User_Guide/Apps/index.html index f6a6f5c1cf..4ac2fc3097 100644 --- a/source/User_Guide/Apps/index.html +++ b/source/User_Guide/Apps/index.html @@ -11,7 +11,6 @@