def send_invite_message(self, email, sender):
msg = Message('Invitation to Tingsmen', recipients=[email])
msg.body = sender + ' invited you to join Tingsmen\n\nTingsmen is a social network where you can propose any ' \
'change to the platform and, supposing the community is ok with it, it will be developed' \
'\n\nWanna know more? visit: https://tingsmen.herokuapp.com'
options = {
'sender': sender
}
msg.html = render_template('email/invite.html', **options)
self.messages.append(msg)
评论列表
文章目录