You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use %20 for the space character to be more sure that different email clients will interpret this when opening the mailto link. Added to code block and brief explanation below for why to use it (could be rephrased if necessary).
<ahref="mailto:?subject=I love owls :: codebar">Email a friend</a>
303
+
<ahref="mailto:?subject=I%20love%20owls%20::%20codebar">Email a friend</a>
304
304
</li>
305
305
</ul>
306
306
```
@@ -309,7 +309,9 @@ Links can also open up a user's email client and share content. The difference b
309
309
310
310
> What happens when you click the second link? How is it different?
311
311
312
-
> What happens when you add `&body=Owls are amazing` to the second link?
312
+
> What happens when you add `&body=Owls%20are%20amazing` to the second link?
313
+
314
+
Note that replacing spaces in the subject text with **%20** isn't essential but makes sure the spaces are kept when opening the link in a range of both new and older email clients/software.
0 commit comments