From: Brad Hards Date: Sat, 18 Dec 2010 16:07:57 +0000 (+0100) Subject: smtp-tls: add Message-ID: header X-Git-Tag: curl-7_21_4~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2395f962dfbeb546b8a64eec88271da48fa66de;p=curl smtp-tls: add Message-ID: header --- 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: ", "Subject: SMTP TLS example message\n", "\n", /* empty line to divide headers from body, see RFC5322 */ "The body of the message starts here.\n",