Spelling and punctuation edits (#24726)

* Spelling and punctuation edits

* Fix typo
This commit is contained in:
Cindy Yates
2018-12-13 21:13:18 -07:00
committed by Manish Giri
parent 2928b5e6ed
commit 7936b91394

View File

@ -22,9 +22,9 @@ If you want to add a specific subject to that mail, be careful to add `%20` or `
Similarly, you can add a specific message in the body portion of the email: Similarly, you can add a specific message in the body portion of the email:
Again, spaces have to be replaced by `%20` or `+`. Again, spaces have to be replaced by `%20` or `+`.
After the subject paramater, any additional parameter must be preceded by `&` After the subject paramater, any additional parameter must be preceded by `&`.
Example: Say you want users to send an email to their friends about their progress at Free Code Camp: Example: Say you want users to send an email to their friends about their progress at Free Code Camp.
Address: empty Address: empty
@ -36,12 +36,13 @@ Your html link now:
```html ```html
<a href="mailto:?subject=Great%20news&body=I%20am%20becoming%20a%20developer">Send mail!</a> <a href="mailto:?subject=Great%20news&body=I%20am%20becoming%20a%20developer">Send mail!</a>
``` ```
Here, we've left mailto empty (mailto:?). This will open the user's email client and the user will add the recipient address themselves. Here, we've left mailto empty (mailto:?). This will open the user's email client and the user will add the recipient addresses themselves.
#### Adding more recipients: #### Adding more recipients:
In the same manner, you can add CC (Carbon Copy) and BCC (Blind Carbon Copy) parameters. In the same manner, you can add CC (Carbon Copy) and BCC (Blind Carbon Copy) parameters.
Seperate each address by a comma! Separate each address by a comma.
Additional parameters must be preceded by `&`. Additional parameters must be preceded by `&`.
```html ```html