how is possible to add a static email address (ccn) in the outgoing email which confirm Event Registration?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
Hi Davide, you can search for the email template which you are using for sending event registration confirmation email under settings->email->templates and then for that template there will be a tab called Email Configuration there you can define your static email CC.
Method 2 : you can also define it at you python code like,
Sample code syntax :
mail_vals = {
'email_from':'specify email from',
'email_to': 'specify email to',
'email_cc':'specify email cc',
'subject':'specify subject',
'body_html':'specify body',
}
self.pool.get('mail.mail').create(cr,uid,mail_vals)
Method 3: Once you search and get the template id then you can write the required email_cc for that related template to achive the functionality.
Sample code syntax:
self.pool.get('mail.template').write(cr,uid,template_id,{'email_to':'add email to','email_from':'add email from','email_cc':'add email cc'})
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
1
gru 23
|
9120 | ||
|
1
sty 19
|
5814 | ||
|
1
maj 23
|
3746 | ||
|
2
lip 19
|
4879 | ||
Change the recipients of the quotation email
Rozwiązane
|
|
3
maj 18
|
4942 |