OpenERP 7中的“From”字段

时间:2013-01-29 08:29:51

标签: openerp

当邮件发送到电子邮件时,我遇到“来自/回复”字段的问题..它没有显示当前用户的电子邮件地址..

这是在从字段声明默认值时的openerp 7的代码。

def _get_default_from(self, cr,uid, context=None):
    this = self.pool.get('res.users').browse(cr, uid,uid, context=context)
    if this.alias_domain:
    return '%s@%s' % (this.alias_name, this.alias_domain)
    elif this.email:
    return this.email
    raise osv.except_osv(_('Invalid Action!'), _("Unable to send email, please configure the sender's email address or alias."))

1 个答案:

答案 0 :(得分:0)

在电子邮件中来自地址来自 ir.mail_server(外发邮件服务器),其中用户名将是来自的地址传出邮件