本文整理匯總了Python中turbomail.Message.reply_to方法的典型用法代碼示例。如果您正苦於以下問題:Python Message.reply_to方法的具體用法?Python Message.reply_to怎麽用?Python Message.reply_to使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類turbomail.Message
的用法示例。
在下文中一共展示了Message.reply_to方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: do_email_students
# 需要導入模塊: from turbomail import Message [as 別名]
# 或者: from turbomail.Message import reply_to [as 別名]
def do_email_students(self):
log.debug(str(request.params))
user = h.get_user(request.environ)
student_ids_str = request.params['student_ids']
student_ids = ah.fileset_id_string_to_id_list(student_ids_str)
students = Student.query.filter(Student.id.in_(student_ids)).all()
students = filter(lambda student: request.params.has_key(str(student.id)), students)
for student in students:
check_student_access(student)
subject = request.params['subject']
body = request.params['body']
from_addr = (user.givenName+" "+user.surName,user.name + '@illinois.edu')
reply_to = user.name + '@illinois.edu'
to_addrs = map(lambda student: (student.displayName, student.netid + "@illinois.edu"), students)
from turbomail import Message
message = Message()
message.subject = subject
message.plain = body
message.author = from_addr
message.reply_to = reply_to
message.to = to_addrs
message.cc = from_addr
message.send()
if request.params.has_key('assignment_id'):
return redirect_to(controller='view_analysis', action='view', id=request.params['assignment_id'])
else:
return redirect_to(controller='view_analysis', action='list')
示例2: send
# 需要導入模塊: from turbomail import Message [as 別名]
# 或者: from turbomail.Message import reply_to [as 別名]
def send(to, template_path, context=None, reply_to='', bcc='[email protected]'):
"""
Send message based on a mako template. The recipient is automatically added
to the context_dict that gets fed to the template.
"""
t = EMAIL_TEMPLATE_LOOKUP.get_template(template_path)
context = context or {}
context['url_for'] = absolute_url_for
def get_email(u, set_context=True):
if isinstance(u, users.User):
if set_context: context['user'] = u
return u.email
return u
if isinstance(to, users.User):
to = get_email(to)
if isinstance(to, (list, tuple)):
to = [get_email(u, set_context=False) for u in to]
pc = pylons.config
subject = t.get_def('subject').render_unicode(**context).strip()
body = line_reduce(t.render_unicode(**context).strip())
f = (pc['mail.message.author_name'], pc['mail.message.author'])
reroute = pc.get('mail.reroute')
if reroute:
old_to = to
to = reroute
lmsg = 'Sending email from %s to %s.' % (f, to)
if reroute:
lmsg += ' Message was rerouted from %s' % old_to
logger.info(lmsg)
msg = Message(f, to, subject, plain=body)
msg.plain = body
msg.bcc = bcc
if reply_to:
msg.reply_to = reply_to
msg.send()
示例3: do_email_students_ajax
# 需要導入模塊: from turbomail import Message [as 別名]
# 或者: from turbomail.Message import reply_to [as 別名]
def do_email_students_ajax(self):
log.debug(str(request.params))
user = h.get_user(request.environ)
student_ids_str = request.params['student_ids']
student_ids = ah.fileset_id_string_to_id_list(student_ids_str)
students = Student.query.filter(Student.id.in_(student_ids)).all()
students = filter(lambda student: request.params.has_key(str(student.id)), students)
for student in students:
check_student_access(student)
subject = request.params['subject']
body = request.params['body']
from_addr = (user.givenName+" "+user.surName,user.name + '@illinois.edu')
reply_to = user.name + '@illinois.edu'
to_addrs = map(lambda student: (student.displayName, student.netid + "@illinois.edu"), students)
from turbomail import Message
message = Message()
message.subject = subject
message.plain = body
message.author = from_addr
message.reply_to = reply_to
message.to = to_addrs
message.cc = from_addr
message.send()
return "Message Sent Successfully"