diff --git a/README.rst b/README.rst index 6c89079..235de94 100644 --- a/README.rst +++ b/README.rst @@ -20,6 +20,20 @@ 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 + +Adding CC in the Email + +.. code-block:: python + + >>> r = message.set_cc(['someone@gmail.com']) + +Adding BCC in the Email + +.. code-block:: python + + >>> r = message.set_bcc(['someone@gmail.com', 'anyone@gmail.com']) + + and more: * DKIM signature