When ever we sent a Sale Order by Mail, after sending the mail gets deleted automatically. But, i want to keep those mails after sent also. How can i do that?
First Activate Technical features for Administrator User.
Then goto Settings menu --> Email --> Templates , then search for Sales Order - Send by Email . For that record Click on Advanced Settings tab and UN-check Auto Delete option.
You have to do that before sending the email:
template_values = {'auto_delete': False}
template.write(template_values)
Related
I have a form embedded on my website via Hubspot API. I want to receive an email notification if someone submits the form. I tried the solution given on the HubSpot community but it does seem to work.
Here it is https://developers.hubspot.com/docs/methods/forms/submit_form
https://developers.hubspot.com/docs/methods/forms/submit_form_v3
Can anybody provide a solution? TIA.
Under Marketing -> Lead Capture -> Forms, find and open the relevant form. Click the Options tab at the top and in the middle of the page locate Send submission email notifications. Select your user from the drop down list or manually enter an email.
I am writing a plugin for Outlook, where I need to fetch only few emails based on some back end Logic.
I have stored those email Message Unique Ids in my DB. And on click of plugin Icon, I wish to load only those Emails to load in my Inbox.
Example, the logic is same as how we click on particular folder like sent items or unread items, it refreshes the Inbox with only the respective emails.
I have created a plugin icon following the tutorial:
https://learn.microsoft.com/en-us/outlook/add-ins/addin-tutorial
Using NodeJS for coding. Can you please give a pointer, how do we load emails in Inbox? or if we can load only specific emails in Inbox?
This is not possible if you're attempting to use the Outlook's inbox display module to show the items you're refreshing. You will have to open a dialog / or a new browser tab to show the custom list of items - which I think is not good user experience. As Brian called out, office-js add-ins are quite restricted.
In the sale order view, there is a "Send offer by email" button which launches the email wizard.
I would like to add the "CC" carbon copy email field in that form.
I am not sure on how to add it, did anyone faced the same need?
Thanks,
You can add your own BCC CC by customizing the wizard
Refer this module for more details:
https://apps.odoo.com/apps/modules/8.0/base_smtp_auto_CC_BCC/
that there’s a missing object in the process which cause the system to raise an exemption. Can also check CRM mail form configuration with regards to attachments. Something in the configuration might be causing the object to be null.
Issue:
Attachments were not able to delete from mail form
ZCRMXX_MF_CAP
Steps to reproduce:
Connect to WEB UI with roles ZMASTERDATA role.
Select "Service" in left menu and click on "Mail forms" field.
Click on "Search" button and select mail form ID "TEST" .
In top menu, click on "More" and select "Attach file".
Select File attached and try to delete it.
The following python statement creates a draft email for one of our users:
draft = service.users().drafts().create(userId='me', body=message).execute()
It does not, however, set the from field to the default "Send mail as" address, as previously specified by the user in a browser (Gmail > Settings > Accounts).
(After the draft email is generated programmatically as shown above, the user can manually adjust the "from" field, to select the default from the drop down list of available send addresses.)
Is there a way to programmatically generate a draft email such that the from field is the "Send mail as" default? In other words, is there a way to programmatically generate such that the from field is the same as if the draft email were manually generated in a browser?
The problem was that I was programmatically setting the email from field: message['from'] = "smith23#gmail.com", where "smith23#gmail.com" is present in the drop down list of available send addresses. This was overriding the default "Send mail as" address, as previously specified by the user in a browser (Gmail > Settings > Accounts).
The solution was to not set message['from'].