From d0a5b06dfaa7e8763a0578de1e1a370362accbef Mon Sep 17 00:00:00 2001 From: Soumen Date: Sat, 11 Feb 2023 02:44:50 +0530 Subject: [PATCH 1/3] Update README.rst --- README.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.rst b/README.rst index 6c89079..4a0eb4f 100644 --- a/README.rst +++ b/README.rst @@ -20,6 +20,17 @@ send message and get response from smtp server: >>> r = message.send(to='s@lavr.me', smtp={'host': 'aspmx.l.google.com', 'timeout': 5}) >>> assert r.status_code == 250 +add CC in the Email +.. code-block:: python + + >>> r = message.set_cc(['someone@gmail.com']) + +add BCC in the Email +.. code-block:: python + + >>> r = message.set_bcc(['someone@gmail.com', 'anyone@gmail.com']) + + and more: * DKIM signature From 223cdc3683a35b7454682f8dbfb88c98a199d2b9 Mon Sep 17 00:00:00 2001 From: Soumen Date: Sat, 11 Feb 2023 02:45:57 +0530 Subject: [PATCH 2/3] Update README.rst --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index 4a0eb4f..a9f0ca4 100644 --- a/README.rst +++ b/README.rst @@ -20,12 +20,15 @@ send message and get response from smtp server: >>> r = message.send(to='s@lavr.me', smtp={'host': 'aspmx.l.google.com', 'timeout': 5}) >>> assert r.status_code == 250 + add CC in the Email + .. code-block:: python >>> r = message.set_cc(['someone@gmail.com']) add BCC in the Email + .. code-block:: python >>> r = message.set_bcc(['someone@gmail.com', 'anyone@gmail.com']) From 5aa166b5d50b83794e403d4b502767b56e7ff140 Mon Sep 17 00:00:00 2001 From: Soumen Date: Fri, 5 May 2023 17:24:42 +0200 Subject: [PATCH 3/3] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index a9f0ca4..235de94 100644 --- a/README.rst +++ b/README.rst @@ -21,13 +21,13 @@ send message and get response from smtp server: >>> assert r.status_code == 250 -add CC in the Email +Adding CC in the Email .. code-block:: python >>> r = message.set_cc(['someone@gmail.com']) -add BCC in the Email +Adding BCC in the Email .. code-block:: python