aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/smtp-tls.c
diff options
context:
space:
mode:
authorBrad Hards <bradh@frogmouth.net>2010-12-25 11:54:41 +1100
committerDaniel Stenberg <daniel@haxx.se>2010-12-25 23:06:29 +0100
commit60765493047cba21e76888e36efaf0cba43ccf6d (patch)
tree02d5e360ea70c1b0d1b8a20e70d86a739d706552 /docs/examples/smtp-tls.c
parent49465fffdb37b91ee5a0ad2601ea9657e5cd8915 (diff)
Add angle brackets to addresses in easy SMTP examples, as for smtp-multi example.
Diffstat (limited to 'docs/examples/smtp-tls.c')
-rw-r--r--docs/examples/smtp-tls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/smtp-tls.c b/docs/examples/smtp-tls.c
index 97119c568..276908861 100644
--- a/docs/examples/smtp-tls.c
+++ b/docs/examples/smtp-tls.c
@@ -16,9 +16,9 @@
* authentication and transport security.
*/
-#define FROM "sender@example.org"
-#define TO "addressee@example.net"
-#define CC "info@example.org"
+#define FROM "<sender@example.org>"
+#define TO "<addressee@example.net>"
+#define CC "<info@example.org>"
static const char *payload_text[]={
"Date: Mon, 29 Nov 2010 21:54:29 +1100\n",