[IMP]send mail (automated purchase order notification mail)

bzr revid: pja@tinyerp.com-20121005131804-qliwjans60m08lhx
This commit is contained in:
Jalpesh Patel (OpenERP) 2012-10-05 18:48:04 +05:30
parent 6aba62a847
commit 50a7718e45
1 changed files with 2 additions and 1 deletions

View File

@ -81,7 +81,8 @@ class mail_compose_message(osv.TransientModel):
elif composition_mode == 'comment' and model and res_id:
vals = self.get_record_data(cr, uid, model, res_id, context=context)
elif composition_mode == 'mass_mail' and model and active_ids:
vals = {'model': model, 'res_id': res_id, 'content_subtype': 'html'}
vals = self.pool.get('email.template').generate_email(cr, uid, context.get('default_template_id'), res_id, context=context)
vals.update({'content_subtype': 'html'})
else:
vals = {'model': model, 'res_id': res_id}
if composition_mode: