Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
9601 มุมมอง

How to code the sending a mail/message to a specific registered user of the system from the admin of the system?

For example, in a form then there is a field (many2one ), there, i need to select a specific user that is registered in the system. And then there is a button which will be pressed so it will send a mail/message to the selected user. The mail/message will come from the admin of the system. The user will have to receive it when the user logged in, and will see it in his/her inbox. The type of the message is comment.

 

Please help me with this. And please give also a sample code.

 

OpenERP version 7

 

Im a newbie in openerp.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

# create form with the fields as below in xml and get the fields from your form in py and create a record in mail.mail
it will automatically send to user('email_to')
And you have a configuration part in Setting -> Technical -> Scheduler
configure your interval time in Email Queue Manager

email_from = login user mail-id
email_to = "what you choose (res.users many2one)"
sub = " "
body_html = " "


vals ={'email_from':email_from,
                        'email_to':email_to,
                        'state': 'outgoing',
                            'subject': sub,
                            'body_html': body,
                            'auto_delete': True}

self.pool.get('mail.mail').create(cr, uid, vals, context=context)

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
มี.ค. 17
3377
2
มี.ค. 15
10437
2
มี.ค. 15
5781
0
มี.ค. 15
6364
1
มี.ค. 15
9599