misc: s/e-mail/email

Consistency is king. Following the lead in everything curl.

Closes #8159
This commit is contained in:
Daniel Stenberg 2021-12-17 11:02:18 +01:00
parent b29af4a406
commit 7a92f865b4
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
28 changed files with 54 additions and 54 deletions

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* IMAP example showing how to send e-mails
* IMAP example showing how to send emails
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* IMAP example showing how to retreieve e-mails from a shared mailed box
* IMAP example showing how to retreieve emails from a shared mailed box
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* IMAP example showing how to copy an e-mail from one folder to another
* IMAP example showing how to copy an email from one folder to another
* </DESC>
*/

View file

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* IMAP example showing how to retreieve e-mails
* IMAP example showing how to retreieve emails
* </DESC>
*/

View file

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* IMAP example showing how to search for new e-mails
* IMAP example showing how to search for new emails
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* IMAP example showing how to modify the properties of an e-mail
* IMAP example showing how to modify the properties of an email
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* POP3 example showing how to retrieve e-mails from a shared mailbox
* POP3 example showing how to retrieve emails from a shared mailbox
* </DESC>
*/

View file

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* POP3 example showing how to delete e-mails
* POP3 example showing how to delete emails
* </DESC>
*/

View file

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* POP3 example showing how to retrieve e-mails
* POP3 example showing how to retrieve emails
* </DESC>
*/

View file

@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* POP3 example showing how to retrieve only the headers of an e-mail
* POP3 example showing how to retrieve only the headers of an email
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* Send e-mail on behalf of another user with SMTP
* Send email on behalf of another user with SMTP
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* SMTP example showing how to expand an e-mail mailing list
* SMTP example showing how to expand an email mailing list
* </DESC>
*/
@ -29,7 +29,7 @@
#include <string.h>
#include <curl/curl.h>
/* This is a simple example showing how to expand an e-mail mailing list.
/* This is a simple example showing how to expand an email mailing list.
*
* Notes:
*

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* Send e-mail with SMTP
* Send email with SMTP
* </DESC>
*/

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* SMTP example showing how to send mime e-mails
* SMTP example showing how to send mime emails
* </DESC>
*/
@ -52,17 +52,17 @@ static const char *headers_text[] = {
};
static const char inline_text[] =
"This is the inline text message of the e-mail.\r\n"
"This is the inline text message of the email.\r\n"
"\r\n"
" It could be a lot of lines that would be displayed in an e-mail\r\n"
" It could be a lot of lines that would be displayed in an email\r\n"
"viewer that is not able to handle HTML.\r\n";
static const char inline_html[] =
"<html><body>\r\n"
"<p>This is the inline <b>HTML</b> message of the e-mail.</p>"
"<p>This is the inline <b>HTML</b> message of the email.</p>"
"<br />\r\n"
"<p>It could be a lot of HTML data that would be displayed by "
"e-mail viewers able to handle HTML.</p>"
"email viewers able to handle HTML.</p>"
"</body></html>\r\n";
@ -109,7 +109,7 @@ int main(void)
mime = curl_mime_init(curl);
/* The inline part is an alternative proposing the html and the text
versions of the e-mail. */
versions of the email. */
alt = curl_mime_init(curl);
/* HTML message. */

View file

@ -21,7 +21,7 @@
***************************************************************************/
/* <DESC>
* SMTP example showing how to verify an e-mail address
* SMTP example showing how to verify an email address
* </DESC>
*/
@ -29,7 +29,7 @@
#include <string.h>
#include <curl/curl.h>
/* This is a simple example showing how to verify an e-mail address from an
/* This is a simple example showing how to verify an email address from an
* SMTP server.
*
* Notes: