Skip to content

Commit f5e32f6

Browse files
Update mail-helper-refactor.md
1 parent daa4ae4 commit f5e32f6

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

proposals/mail-helper-refactor.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Send a Single Email to a Single Recipient
22

3-
The following code assumes you are storing the API key in an [environment variable (recommended)](https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md#environment). If you don't have your key stored in an environment variable, you can assign it directly to `apikey` for testing purposes.
3+
The following code assumes you are storing the API key in an environment variable (recommended).
44

55
This is the minimum code needed to send an email.
66

@@ -37,7 +37,7 @@ public class SendGridExample {
3737

3838
# Send a Single Email to Multiple Recipients
3939

40-
The following code assumes you are storing the API key in an [environment variable (recommended)](https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md#environment). If you don't have your key stored in an environment variable, you can assign it directly to `apikey` for testing purposes.
40+
The following code assumes you are storing the API key in an environment variable (recommended).
4141

4242
```java
4343
import com.sendgrid.*;
@@ -76,7 +76,7 @@ public class SendGridExample {
7676

7777
# Send Multiple Emails to Multiple Recipients
7878

79-
The following code assumes you are storing the API key in an [environment variable (recommended)](https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md#environment). If you don't have your key stored in an environment variable, you can assign it directly to `apikey` for testing purposes.
79+
The following code assumes you are storing the API key in an environment variable (recommended).
8080

8181

8282
```java
@@ -128,7 +128,7 @@ public class SendGridExample {
128128

129129
# Kitchen Sink - an example with all settings used
130130

131-
The following code assumes you are storing the API key in an [environment variable (recommended)](https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md#environment). If you don't have your key stored in an environment variable, you can assign it directly to `apikey` for testing purposes.
131+
The following code assumes you are storing the API key in an environment variable (recommended).
132132

133133

134134
```java
@@ -352,8 +352,7 @@ public class SendGridExample {
352352

353353
# Attachments
354354

355-
The following code assumes you are storing the API key in an [environment variable (recommended)](https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md#environment). If you don't have your key stored in an environment variable, you can assign it directly to `apikey` for testing purposes.
356-
355+
The following code assumes you are storing the API key in an environment variable (recommended).
357356

358357
```java
359358
import com.sendgrid.*;
@@ -393,7 +392,7 @@ public class SendGridExample {
393392

394393
# Transactional Templates
395394

396-
The following code assumes you are storing the API key in an [environment variable (recommended)](https://github.com/sendgrid/sendgrid-python/blob/master/TROUBLESHOOTING.md#environment). If you don't have your key stored in an environment variable, you can assign it directly to `apikey` for testing purposes.
395+
The following code assumes you are storing the API key in an environment variable (recommended).
397396

398397
For this example, we assume you have created a [transactional template](https://sendgrid.com/docs/User_Guide/Transactional_Templates/index.html). Following is the template content we used for testing.
399398

0 commit comments

Comments
 (0)