python - GAE verify appspotmail.com forwarding -
i trying setup email forwarding my-domain.com myappid.appspot.com. when sign in email account , enter email forwarding messages, says confirmation message code had been sent there. how can access code?
i created , made forward confirmation message email. there got link, clicked , worked perfectly!
class logsenderhandler(inboundmailhandler): def receive(self, mail_message): logging.info("received message from: " + mail_message.sender) sender_address = "sender@email.com" subject = "processing message" user_address = 'my@email.com body = mail_message.original mail.send_mail(sender_address, user_address, subject, body)
Comments
Post a Comment