Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Docstring explanation for return_path and reply_addresses #129

Merged
1 commit merged into from Mar 3, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions boto/ses/connection.py
Expand Up @@ -124,6 +124,20 @@ def send_email(self, source, subject, body, to_addresses, cc_addresses=None,
: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,
Expand Down