summaryrefslogtreecommitdiff
path: root/boto/ses
diff options
context:
space:
mode:
authorsanbornm <marcrosoft@gmail.com>2011-03-02 22:44:06 -0700
committersanbornm <marcrosoft@gmail.com>2011-03-02 22:44:06 -0700
commit3da4da6bb1fe5b6a76e98471d347af715699cfa7 (patch)
treefd86db9af627826ed1858dbc7b905ae1f81532f8 /boto/ses
parent7450ce45fc958eaa41976ccb84a4b73c582ec939 (diff)
downloadboto-3da4da6bb1fe5b6a76e98471d347af715699cfa7.tar.gz
Added docstring explanation for return_path and reply_addresses
Diffstat (limited to 'boto/ses')
-rw-r--r--boto/ses/connection.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/boto/ses/connection.py b/boto/ses/connection.py
index 9b4b63f0..8268e4a7 100644
--- a/boto/ses/connection.py
+++ b/boto/ses/connection.py
@@ -124,6 +124,20 @@ class SESConnection(AWSAuthConnection):
:param format: The format of the message's body, must be either "text"
or "html".
+ :type reply_addresses: list of strings or string
+ :param reply_addresses: The reply-to email address(es) for the
+ message. If the recipient replies to the
+ message, each reply-to address will
+ receive the reply.
+
+ :type return_path: string
+ :param return_path: The email address to which bounce notifications are
+ to be forwarded. If the message cannot be delivered
+ to the recipient, then an error message will be
+ returned from the recipient's ISP; this message will
+ then be forwarded to the email address specified by
+ the ReturnPath parameter.
+
"""
params = {
'Source': source,