248 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
56
views
With Outlook 2021, is there a way to use IConverterSession
I have a project that uses the function CoCreateInstance that tries to load IConverterSession. but now that's failing, with HR -2147221164
Our CoCreateInstance example:
HR = CoCreateInstance(
...
0
votes
1
answer
135
views
How to Properly Decode Quoted-Printable .eml Files in Django to Avoid = Artifacts?
I'm working on a Django project where I need to handle .eml files. The email content often has Quoted-Printable encoding, which causes some characters to be incorrectly displayed. For example, certain ...
1
vote
1
answer
360
views
Reading EML-FIles with Delphi
I want to read eml-files and extract the plain text.
So far i have found the TIdMessage with which i can iterate over the TIdMessage.MessageParts and check if their PartType is mptText. All of that ...
0
votes
1
answer
204
views
Unable to Retrieve and Read .eml Attachments in Gmail Using Google Apps Script
I am facing an issue while using Google Apps Script to automate the retrieval of .eml file attachments from specific emails in my Gmail inbox. My script is designed to search for emails with a ...
3
votes
0
answers
368
views
How to change content of .eml email file with Base64 encoded text?
I have a .eml email file which I want to send. I open the file Outlook but it contains some unnecessary sentences which I want to delete.
I tried to open the .eml file in notepad and locate the ...
-1
votes
1
answer
1k
views
Generate EML Content ( Add file as an attachment)
I am trying to implement email functionality on JavaScript based front end. My task is to open default email client (mostly outlook) with an attachment (file). I used mailto, but it doesn't support ...
1
vote
1
answer
237
views
how do i add image created using HTML2Canvas to eml file to contain data and image in attachment or body
onInitiateExitProcess() {
if (this.ToEmail) {
const modalContent = document.querySelector('.email') as HTMLElement;
html2canvas(modalContent).then(canvas => {
const ...
0
votes
1
answer
65
views
Attachment Size Limitation in Redemption RDOMail
I am using Redemption in my code to convert an eml file to msg file.
I am using Import method to do so.
However, i observed that for one of the eml file which has an attachment of size 500mb+, the ...
0
votes
1
answer
162
views
eml file display using php not showing images
I'm using this code for display eml file contests using php
It shows email body fine but it not displaying the attached images.
<?php
error_reporting(-1);
$EML_FILE_PATH = '';
$...
1
vote
1
answer
777
views
Programmatically save an outlook email as eml file
Anyone has an idea that i save an outlook email as eml file, programmatically ?
Im currently reading this documentation.
https://learn.microsoft.com/en-us/javascript/api/outlook/office.body?view=...
0
votes
0
answers
174
views
Power Automate to generate a reply to email from SharePoint
I have a SharePoint folder which contains files in .eml format. These email files need to be replied to and currently users need to preview/download the file and then they can respond. I am looking ...
1
vote
1
answer
210
views
MimeMessage emlMessage = new MimeMessage(session, emlInputStream); throwing InvocationTargetException
I have written a code to parse .eml file to a JSON file. I'm using the below dependency
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</...
0
votes
1
answer
1k
views
Powershell - Need a way to extract the attachments from .eml file
I have written the below Powershell code that loops through all attachments in a given ".eml" file.
My goal is to be able to extract each attachment to a local directory.
Up to now, I have ...
1
vote
0
answers
2k
views
Convert .msg file to .eml file in Python
I'm writing a wrapper API to send some email reports to a third-party SaaS which parse them and get some information about them. My users have to report with .eml or .msg file (I am required to accept ...
0
votes
0
answers
172
views
How to change content of .eml messages in python script where content-maintype is multipart and it's different content types
For several days I'm trying to change content of .eml files in python, specifically I need to exchange hyperlinks. HTTP or HTTPS -> HXXP or HXXPS. I've the biggest problem with content-type of ...