Odoo 14 chatter attachments problem. How to remove eml files? - odoo

I have a problem with attachments in odoo chatter.
When an external user answer to my email, the system receives the email with an ".eml" file attached.
How can i remove those eml files?

Related

Corrupted PDF attachment on SOST tcode

I am sending email using cl_bcs class as PDF attachment.Now, when I do issue output to in VA02/03 tcode,it works and in email I can open the attachment.But,on press of save in change mode in va02 tcode,as output type is automatically triggered using condition record,it sends the mail but the PDF attachment(which is adobe form only) shows corrupted.
Any pointers?
Thanks for all your help.I found out the solution. The reason was that the pdf from Adobe Form FM was not generating correctly.So before converting to Binary, we need to pass docparams-getpdf = X.This solved the issue and attachment is opening like charm.I am using cl_bcs class for mail functionality.

PDF created by Google Scripts and sent as an email attachment is unreadable

I'm trying to copy a document I have in my drive, save it as a PDF, and then email the PDF as an attachment. However, even though the PDF is always copied and sent correctly as an attachment, and is properly readable form the gmail "preview" when viewing the email chain, it is unreadable when downloaded (filetype is simply "file"). Both the original document, when viewed from my drive, and the PDF (when the document is saved as a PDF and downloaded from the drive) are readable.
To me this indicates that there is either a problem with the way I convert the document into a PDF, or the way I attach it.
Here is how I convert it to a PDF:
var newFile = DriveApp.createFile(copyFile.getAs('application/pdf'));
And here is how I attach it:
MailApp.sendEmail(email, subject, message, {
name : "senderEmail",
attachments : [invoicePdf]
});
I know that using the Document Google Scripts class it is possible to get a Document as a pdf using the application/pdf keyword.
I have been sending emails with attached PDFs in this manner for a while now to several people; I find it unlikely, but possible, that none of them brought this issue to my attention until recently. The attachments from both recent emails (from people who have confirmed to me that the attachments are unreadable) and older emails are unreadable for my when I go to those conversations in my gmail and download the attached PDFs.
Kindly change your this line
var newFile = DriveApp.createFile(copyFile.getAs('application/pdf'));
as follows
var newFile = DriveApp.createFile(copyFile.getAs('application/pdf')).setNa‌​me("fileName.pdf");
So that drive name it with .pdf extension, so that it can be opened properly.

Outlook Save MHT - Include BCC, Exclude Embedded Items, Display Addresses

I use C# and the Outlook 2010 object model to save Outlook emails to MHT format (MIME HTML). I have no problem saving an email as an MHT.
//mi is a MailItem
//Save As MHT
mi.SaveAs(#"D:\test.mht", OlSaveAsType.olMHTML);
There are aspects of the resulting MHT that I would like to customize.
An Outlook-generated MHT file does not display the Bcc line of emails known to have Bcc recipients. These emails are taken from a sender's email store. Are there options to force the display of the Bcc line?
If the source email is a rich text formatted email and contains embedded files, Outlook stores the embedded files in the resulting MHT. Outlook does this well. However, I would like to purge the embedded files. Are there options to force Outlook not to write embedded files to the MHT? Saving as plain HTML is not an option because I want to retain in-line images.
An Outlook-generated MHT file shows the display name of each recipient. I would like for the MHT file to show the display name and the email address of each recipient. Is there a way to do this?
There is no way to do that, you would need to generate the MHT file yourself.

How to save a email to a PDF format?

I want to save all my emails into a PDF format. The file must contains which look similar to the Outlook Reading Pane into Outlook 2010.
Is there a programming way to to this (cause hundreds of emails) ?
I would use openpop to retrieve all your emails. Then you could loop through each email and save the body to a pdf.

generating an html attachment vb.net

I am trying to generate a report html file and email it as an attachment with vb.net
I know how send mail and attachments.
Do I need to generate the html file, save it as an .html file to the local disk where the program runs, then add its file path to the attachment property to send it to the recipient?
It is going to be a rather large report, and I would like to send it as an attachment instead of directly inside of the email itself.
Thanks
Yes, you save the file to disk ant then add to the Attactments collection of the MailMessage. Here is the C# syntax to create an Attachment from a file on disk and add the attachment to the message. It will be similar for VB.Net.
Attachment att = new Attachment(filename);
message.Attachments.Add(att);