Possible Duplicate:
sending email with GAE copies sender — how to stop?
I'm using Python with Google's App Engine and I am working on sending emails to users.
I have it so users can respond to posts by emailing them. However, it also, by default, sends a copy of the email to the user. Is it possible to disable this?
This is the code I have:
mail.send_mail(
user.email(), # from
greeting.author.email(), # to
'MSUchat: %s is %s - %s' % (user, response.inquiry, greeting.title), # subj
'You received a response to your posting.\r\n\r\n%s wrote:\r\n\r\n"%s"' % (user, response.content), # body
)
I only want this email to be sent to the person they are responding to, not have it sent to themselves as well.