我有一个编码的字符串(excel_file(,我想从这个字符串生成一个xsl文件。
是否可以生成一个.xsl文件,只在我的.py文件中添加代码,而不将此文件保存在本地,因为我想将此文件附加到邮件中。
att_id = self.env['ir.attachment'].create({
'name': 'My name',
'type': 'binary',
'datas':excel_file,
'datas_fname': 'Myname.xsl',
'res_model': 'print.invoice.cron',
'res_id': self.id,
'mimetype': 'text/csv'
})
tools.email_send(email_from='sending@test.fr',
email_to=['recive@gmail.com'],
subject='Some subject',
body=att_id)
我收到了附件的id,但没有收到文件。并且email_send((没有attache属性
所以我的建议是:
att_id = self.env['ir.attachment'].create({
'name': 'My name',
'type': 'binary',
'datas':excel_file,
'datas_fname': 'Myname.xsl',
'res_model': 'print.invoice.cron',
'res_id': self.id,
'mimetype': 'text/csv'
})
template = self.env.ref(
'module_name.email_template', False)
ctx = dict(
default_model=self._name,
default_res_id=self.id,
default_use_template=bool(template),
default_template_id=template.id,
default_composition_mode='comment',
default_email_to=email,
default_lang=self.env.user.partner_id.lang,
default_attachment_ids=[(6, 0, att_id.ids)],
)
self.env['mail.template'].browse(template.id).with_context(
ctx).send_mail(self.id, force_send=True)
模板创建代码:
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<record id="email_template" model="mail.template">
<field name="name">Template Name</field>
<field name="model_id" ref="module_name.model_your_model"/>
<field name="email_to">${ctx.get('default_email_to')}</field>
<field name="subject">Subject</field>
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px;">
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Email body
</p>
Thanks
</div>
</field>
<field name="lang">${ctx.get('default_lang')}</field>
<field name="user_signature" eval="True"/>
<field name="auto_delete" eval="True"/>
</record>
</data>
</odoo>
请检查一下,让我知道它是否有效。