Skip to content

Commit 6324960

Browse files
committed
Fix for-developers callouts and markdown formating
1 parent 9175ce8 commit 6324960

File tree

3 files changed

+9
-28
lines changed

3 files changed

+9
-28
lines changed

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

+9-18
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@ navigation:
1414

1515
You can also send email with [the UI]({{root_url}}/help-support/getting-started/how-to-send-email.html) and with [the API]({{root_url}}/API_Reference/api_v3.html).
1616

17-
- [What is SMTP?](#-What-is-smtp)
18-
- [Sending a test SMTP email with Telnet](#-Sending-a-test-SMTP-email-with-Telnet)
1917

20-
##
21-
What is SMTP?
22-
18+
## What is SMTP?
2319

2420
[SMTP]({{root_url}}/glossary/smtp.html), or _simple mail transfer protocol_, is a quick and easy way to send email from one server to another. SendGrid provides an SMTP service that allows you to deliver your email via our server instead of your client or server.
2521

@@ -29,13 +25,10 @@ The X-SMTPAPI headers that you add are stripped from the final email because the
2925

3026
For a deeper dive into what SMTP is, the benefits of sending an email with SMTP, and how SendGrid can help, see the [SMTP Service Crash Course](https://sendgrid.com/blog/smtp-service-crash-course/) on our blog.
3127

32-
##
33-
Sending a test SMTP email with Telnet
34-
28+
## Sending a test SMTP email with Telnet
3529

36-
###
37-
Before you begin
38-
30+
31+
### Before you begin
3932

4033
- Create a SendGrid API key on the [API Keys page](https://app.sendgrid.com/Account_and_Settings/api_keys).
4134
- Open your command line, bash, shell, or Terminal functionality (depending on what OS you are using). You'll use this window to input the commands to initiate a telnet connection.
@@ -70,14 +63,12 @@ Telnet does not register backspaces correctly - so you have to type your command
7063
<br>The mail server returns `250 Ok: queued as …` - This means the email has been queued to send. This queue moves very quickly.
7164
1. Exit the Telnet connection with: `quit`.
7265

73-
Now that you've sent a test email, learn to [integrate your servers with our SMTP API]({{root_url}}/for-developers/getting-started/integrating-with-the-smtp-api.html).
66+
Now that you've sent a test email, learn to [integrate your servers with our SMTP API]({{root_url}}/for-developers/getting-started/integrating-with-the-smtp-api/).
7467

75-
##
76-
Additional Resources
77-
68+
## Additional Resources
7869

79-
- [Getting Started with the UI]({{root_url}}/help-support/getting-started/how-to-send-email.html)
70+
- [Getting Started with the UI]({{root_url}}/help-support/getting-started/how-to-send-email/)
8071
- [Getting Started with the API]({{root_url}}/API_Reference/api_v3.html)
8172
- [SMTP Service Crash Course](https://sendgrid.com/blog/smtp-service-crash-course/)
82-
- [Integrating with the SMTP API]({{root_url}}/for-developers/getting-started/integrating-with-the-smtp-api.html)
83-
- [Building an SMTP Email]({{root_url}}/for-developers/getting-started/building-an-smtp-email.html)
73+
- [Integrating with the SMTP API]({{root_url}}/for-developers/getting-started/integrating-with-the-smtp-api/)
74+
- [Building an SMTP Email]({{root_url}}/for-developers/getting-started/building-an-smtp-email/)

gatsby-browser.js

-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
exports.onClientEntry = () => {
2-
(function () {
3-
const path = 'https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css';
4-
const link = document.createElement('link');
5-
link.setAttribute('rel', 'stylesheet');
6-
link.setAttribute('type', 'text/css');
7-
link.setAttribute('href', path);
8-
document.head.appendChild(link);
9-
}());
10-
};

0 commit comments

Comments
 (0)