aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/smtp-tls.c
diff options
context:
space:
mode:
authorBrad Hards <bradh@frogmouth.net>2010-12-18 17:07:57 +0100
committerDaniel Stenberg <daniel@haxx.se>2010-12-18 17:07:57 +0100
commitd2395f962dfbeb546b8a64eec88271da48fa66de (patch)
tree1e68ed7a04788cb811619f564f41d1cc74dab657 /docs/examples/smtp-tls.c
parent476b1a079b4f2f2f4e2bb9ccdc1b86ed27b985f0 (diff)
smtp-tls: add Message-ID: header
Diffstat (limited to 'docs/examples/smtp-tls.c')
-rw-r--r--docs/examples/smtp-tls.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/examples/smtp-tls.c b/docs/examples/smtp-tls.c
index 58719ade2..a8baade58 100644
--- a/docs/examples/smtp-tls.c
+++ b/docs/examples/smtp-tls.c
@@ -24,7 +24,8 @@ static const char *payload_text[]={
"Date: Mon, 29 Nov 2010 21:54:29 +1100\n",
"To: " TO "\n",
"From: " FROM "(Example User)\n",
- "Cc: " CC "(Another example User)\n"
+ "Cc: " CC "(Another example User)\n",
+ "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@rfcpedant.example.org>",
"Subject: SMTP TLS example message\n",
"\n", /* empty line to divide headers from body, see RFC5322 */
"The body of the message starts here.\n",