Questions tagged [mime-message]

For questions regarding a Message that is specified in the Internet standard Multipurpose Internet Mail Extensions (MIME).

A Message specified in the Internet standard Multipurpose Internet Mail Extensions (MIME).

RFCs specifying the MIME standard:

  • RFC2045 – Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies
  • RFC2046 – Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types
  • RFC2047 – MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text
  • RFC4289 – Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures
  • RFC2049 – Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples
  • RFC4288 – Media Type Specifications and Registration Procedures
254 questions
2
votes
1 answer

Sending email with attachments using Gmail API in Android (execute() hangs)

Everything seems to work as long as the attachment is small. However, as I try to attach a larger file (7MB for example), the execute() method of Send just hangs. I tried to go over the documentation and if I understand correctly I should use a send…
SagiLow
  • 5,721
  • 9
  • 60
  • 115
2
votes
1 answer

Outlook MSG to MimeMessage in Java

Is there any way (open source way) to convert Outlook .msg to MimeMessage so that someone can work with msg files in Java? There is a library named MsgParser developed for working with .msg files but this library does not give an option to convert…
newzad
  • 706
  • 1
  • 14
  • 29
2
votes
1 answer

Mass mailing: attachment can be seen in all email clients except iOS

I am working on a mass mailing of a HTML newsletter with a PDF file attached, and I'm having a really strange problem: the PDF attachment can be seen in all the email clients that I've tried... except iOS 8.4.1. Here are the circumstances: The HTML…
PaulJ
  • 1,646
  • 5
  • 33
  • 52
2
votes
1 answer

Not able to send mail from my host

I am using java mail api for sending mail. I am able to send mail using Google account but facing some issue sending from my domain using SSL. Here is the implementation, please let me know where i am lacking. // Create all the needed properties …
Jignesh Jain
  • 1,518
  • 12
  • 28
2
votes
0 answers

Javamail how to send encrypted mime

Is there any ideas how to send encrypted mime to recipients addresses by SMTPTransport. SMTPTransport transport = (SMTPTransport) session.getTransport("smtp"); transport.connect(host, port,username, password); …
nAkhmedov
  • 3,522
  • 4
  • 37
  • 72
2
votes
0 answers

how to debug email mime type issue?

In short the user submits a contact us form from a web page which generates an email. The email is delivered email box that is check by Ciboodle application. Since few weeks the and additional and unwanted mime add have been appearing in the…
2
votes
1 answer

Sending message through java mail

Hello i am able to send a mail from my web application. But the problem here is am able to send only one line of message ie I want to send a message saying: Your username is : xxxx Your PassWord is: xxx Message message = new…
user3349720
  • 179
  • 2
  • 12
2
votes
2 answers

javamail - Getting message body content formatting error

When I try to retrieve the message body text from an email, it is coming out in half sentences and strange formatting. Any help would be great... Code: protected void dumpPart(Part p) throws MessagingException, IOException { if…
cdrev
  • 5,750
  • 4
  • 20
  • 27
2
votes
1 answer

Decoding Outlook's "J" smilies into text

Outlook by default transforms ":)" into "J". Googling has revealed that J is the Wingdings character for the smilie, so they appear like normal smilies to Outlook users. I want to transform these "J" smilies into the UTF-8 smiley characters so the…
chroder
  • 4,393
  • 2
  • 27
  • 42
2
votes
4 answers

CSS was ignored due to mime type mismatch

My Site style sheet is being ignored by every browser I have tested it one. I'm getting this error when testing on IE9 - SEC7113: CSS was ignored due to mime type mismatch Here is the html from the header referencing it. Let me know if you need more…
mwhite14
  • 257
  • 1
  • 7
  • 19
2
votes
1 answer

Web fonts mime type warning

I'm using the free web fonts service via webfonts.fonts.com which are being served by their server and i'm getting the following warning in my Chrome/Safari browser console: "Resource interpreted as Font but transferred with MIME type…
Frasier013
  • 301
  • 1
  • 3
  • 10
1
vote
1 answer

MimeDecode koi8r charset

I've a problem with koi8r charset with mimeDecode, As an example: Subject: =?KOI8-R?B?8NLJ18XUIQ==?= From: =?KOI8-R?B?4czFy9PBzsTSIPfPzMvP1w==?= Becomes: Subject: п÷я─п╦п╡п╣я┌! From: Александр Волков It should be as follows, Subject: Привет!…
alex volkow
  • 129
  • 3
  • 13
1
vote
1 answer

unwanted line break in email header when using email.mime

I'm playing around with SMTP and using email.mime to provide the header structure. For some reason when a try to add a header that exceeds a certain length a line break is added into my header line. e.g. from email.mime.text import MIMEText message…
user788462
  • 1,085
  • 2
  • 15
  • 24
1
vote
4 answers

Smart quotes in a MimeMessage not showing up correctly in Outlook

Our application takes text from a web form and sends it via email to an appropriate user. However, when someone copy/pastes in the infamous "smart quotes" or other special characters from Word, things get hairy. The user types in he said “hello”…
abeger
  • 6,766
  • 7
  • 41
  • 58
1
vote
1 answer

MIME Message out of MailItem

So I had a lot of research on this topic. There was a COM approach, I spent quite a lot of time to implement it, it was involving the IMessage, IConverterSession, some reflection, things like that. Most answers I've found suggested this can't be…
Pavel Donchev
  • 1,809
  • 1
  • 17
  • 29