Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of email to support: text in character sets other than ASCII, non-text attachments, message bodies with multiple parts, and header information in non-ASCII character sets

learn more… | top users | synonyms

0
votes
1answer
24 views

sending multipart text/html alternative message with file attachments with perl,

I'm busy putting together a script which creates email with multipart alternative parts and attachments. Now all seems to be working fine except for normal attachments, they don't seem to be available ...
1
vote
0answers
37 views

Java emoji conversion to xml: what libraries exist?

I am transforming MIME messages to XML so that I can submit them to a mail merge service as SOAP requests, but Emoji are giving me problems (the smiley 😃 for example, which I'd like to have ...
1
vote
1answer
14 views

Mime encoded headers with extra '=' (==?utf-8?b?base64string?=)

This might be a silly question but... here it goes! I wrote my own MIME parser in native C++. It's a nightmare with the encodings! It was stable for the last 3 months or so but recently I noticed ...
1
vote
0answers
25 views

NFC: Can't open this message

I'm writing an WP8 NFC Application. I send (ndef) messages from my computer to the phone. On the phone I subscribed for NDEF Messages: _proximityDevice.SubscribeForMessage("NDEF", ...
0
votes
0answers
30 views

JavaScript: send mime message

I have user interface to send message. User enters a subject, message body, emails to send, attaches some files. After submit I need to send message as MIME message, like this: From: John Doe ...
1
vote
1answer
32 views

c# HTTP Multipart MIME parser

I'm getting a Multipart MIME response from an HTTP call and need to extract the parts. I'm looking for a simple way to do this. I'm using the System.Net.Http methods to get the content, however ...
3
votes
1answer
58 views
+50

dropzone.js - acceptedMimeTypes

I am trying to implement some limitation to the file types allowed for upload using dropzone.js. Somehow the below code works for Word, Excel and Powerpoint documents but it doesn't work for .zip and ...
0
votes
0answers
14 views

Retrieve MIME multipart data from a SOAP response

I'm using Python and Suds to consume a SOAP webservice, and sometimes, when the response data is too big, it switch the response format to WS-Attachment. It's supposed to be a full MIME message, but ...
1
vote
0answers
12 views

Does Gmail set an invalid Content-ID header for inline attachments?

Short Version A Content-ID header on an attachment must be of the form local-part "@" domain. Gmail's Content-IDs do not have an @ in them. Is this a real bug, or am I misreading the spec? Long ...
0
votes
1answer
43 views

My php script for mailing a form is not working

I am trying to set up a form that will send attachments along with the email content, but I have no idea what I am doing. I am completely new to PHP, and just learned to do the basic mail form work ...
2
votes
0answers
47 views

Recive image via mail without the file type extension

In the app i'm creating I would like to send an image via email, so I'm using the following code to do so: send.setOnClickListener(new OnClickListener() { @Override public void ...
0
votes
0answers
22 views

Parsing MIME mail type

After lots of efforts I created my own mail parser. Now successfully able to parse and display emails. But few mails especially sent from apple or Iphone appear like this after parsing. I have no idea ...
1
vote
0answers
21 views

font color in .doc MS-word using tcl+html

I send report files (automation result) in .doc format attachment to email accounts. I use TCL 8.5, expect, html and MIME to send email from a Fedora 12 server. I could see the result fonts in color ...
0
votes
1answer
59 views

Message body writer error while doing POST operation with JSON payload using Jersey Client

e I am trying to do a POST operation with JSON payload for REST service using Jersey Client in JUnit . Here is what I have done: Resource Class @Path("/Users") @Component public class UserResource{ ...
0
votes
1answer
35 views

Added mime types to httpd.conf but still not loading video (gave up)

Hey I'm trying to get HTML5 video working on this page: https://www.thankyoupayroll.co.nz/system-update_test.html I've added these Mime types to the httpd.conf file and restarted the server: AddType ...
3
votes
3answers
77 views

write colored font in email using tcl

I automate a network switch using Tcl and expect scripts on my Fedora 12. The test logs and result with attachments are sent to an email inbox (office 365)-browser and outlook modes. I would like to ...
2
votes
1answer
19 views

Parse MIME sender in Java (RFC 822)

MIME message senders appear in formats such as: "John Doe" <johndoe@gmail.com> <johndoe@gmail.com> I'm trying to figure out how to extract the string "johndoe@gmail.com" in the above ...
0
votes
0answers
29 views

Is it possible to have one HTML document split into MIME chunks?

I have a HTTP response. Is there any way to send it, in two MIME chunks? For example: in HTTP response I have: <html> <head><title>Example</title> <body>Some ...
0
votes
0answers
38 views

Copy specific sort of files to another directory

I check with magic mime each file in a directory to get the 'real' sort of the file (text, image...) Now I want this: Copy each sort to another directory. Example: all text files to /test/text/, all ...
0
votes
0answers
14 views

MIME for an iOS app export compliance

I know many questions have been asked regarding what does and what doesn't count as encryption for the export compliance. However, I have found nothing specifically on using MIME. I am not using HTTPS ...
0
votes
0answers
27 views

Sending file attachment using MIME

I am trying to send an image attachment by mail using the code below. I have a problam in emailClass.php file in line 22 fread(...). I know it because if I echo something before that line, it is ...
0
votes
1answer
44 views

Correct format for sending mime-encoded email using PHP's mail

What is the correct way to create an mime multipart email for sending with PHP's mail function? $boundary = uniqid(rand(), true); $headers = "From: <noreply@example.com>\r\n"; ...
0
votes
1answer
157 views

the request was rejected because no multipart boundary was found in Grails

I am trying to send a request with content-type multipart/mixed and simply print the request in my controller with the line println params However, I keep getting an error: the request was rejected ...
0
votes
1answer
37 views

can I add a mime type to a javascript encodeURIcomponent response?

I would like to generate an excel file with some visible data in a table I have. I currently generate it like so: $("#data_table tbody tr").filter(":visible").each(function(i,t){ //iterate ...
0
votes
0answers
35 views

Libraries to parse email into json, like what mailgun is doing

I'm looking for library that can parse email content into a json (or any structured data format). I know there are a number of services like mailgun providing this but I prefer to use my own email ...
0
votes
0answers
25 views

Content disposition header is not displaying in the order given when hosted in IIS…displaying in un-identified sort order

I came across a problem when i am printing the content disposition value in a label.My code is given below(.NET4.0)...In .NET 3.5 it worked well... public partial class _Default : System.Web.UI.Page ...
0
votes
0answers
30 views

MIME::Parser performance issue , how to optimize

I need an extremely fast mime parser script to parse mails break it up into attachments and body. The current one I have is a perl script that calls MIME::Parser and parses the mails but the ...
0
votes
1answer
40 views

search if is a pdf reader app installed - Android

could you help me? I want when enter a specific activity (suppose test device) check if there is any application to read pdfs, if not, display a toast saying that the app is not installed, I neeed to ...
0
votes
1answer
44 views

Extra Tabs in IMAP HTML Text

I'm using Python and imaplib to obtain emails from a IMAP server (supports all kinds of IMAP servers - GMail, etc.). My problem is: Using the IMAP BODY[INDEX] command to fetch a specific body part, ...
0
votes
1answer
32 views

Is it possible to extract/reconstitute a MIME attachment from a text only representation of an email?

I'm writing in python, but this is more of a generic question. When you go to gmail or similar and you look at an email with an attachment and you click "show original" or some such button you get a ...
0
votes
0answers
27 views

Considerations when parsing an email with MIME type

I have a coding assignment where I need to 'parse an email' and parse essentially any email. I've got the basics down (no attachments, regex searching the header and all that) and I have the MIME RFC ...
-3
votes
1answer
239 views

PHP @mail returning false

This code is not sending email, and I'm getting no errors to indicate why. How is one supposed to troubleshoot this? $uid = md5(uniqid(time())); $headers= "From: " . $this->fromAddress . ...
0
votes
0answers
70 views

Why does Safari/WebKit appends .html to downloaded files?

I'm having lot of issues with Safari. When I provide a download from a PHP script the downloaded file has ".html" extension appended. Despite the HTTP headers I send to the client, I found them ...
1
vote
3answers
49 views

PHP: Why is this forced mime download adding 2 extra empty lines?

I have a PHP script I wrote to create a .txt tab delimited file. I need to have this forced downloaded to the web browser. It does all this, but when I compare the file to the source the forced ...
0
votes
2answers
59 views

MIME::Lite error attaching file perl

500 Internal server error when attaching a file, but not when sending without attachment. use MIME::Lite; $msg = MIME::Lite->new( From =>'email@domain.com', To ...
0
votes
1answer
98 views

HTML email to plain text with MIME::Entity

I'm using a perl script to convert HTML mails to plain text. The current code (for multipart mails) looks like this: my $parser = new MIME::Parser; my $entity = $parser->parse(\*STDIN) or die ...
0
votes
1answer
39 views

Decode MIME Message and display on ASP.Net

I have multipart mail message MIME stored in SQL database. I want to retrieve and display it on the ASP page. I tried decoding it manually but it was not so accurate. There are many types of encoding ...
1
vote
1answer
211 views

LotusScript cannot get file attachment from email

I had never run into this problem, but I cannot get a handle on a file attachment on an email. I have code that can either search the document for Embedded Objects or search a field for Embedded ...
0
votes
1answer
71 views

Apache returns page with wrong mime type

I have a web app deployed on Tomcat 7 (on port 8080) and an Apache server (on port 80) in front of it, on Linux. When accessing the app on 8080, everything works fine. Otherwise, on port 80, ...
0
votes
0answers
17 views

Why does mime.types not contain an associated file-extension for some entries?

Looking at both the linux file: /etc/mime.types and the following google chrome source code, why is every mime type not associated with at least one file extension? What would be the point of ...
0
votes
0answers
8 views

Email::Sender attachements

When searching for a perl Mail sending solution Email:Sender was mentioned more then once as a robust solution. But I couldn't find out if it has the ability to deal with attachments or if this has ...
0
votes
1answer
93 views

MIME encoded folded Subject header results in warning when calling mail()

When a Subject header is MIME encoded and folded mail() results in PHP warning: <?php $mime_subject = "=?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?=\r\n ...
0
votes
1answer
25 views

convert mime mails from the input stream to readable text

Can I get any help for php mime email parser/decoder like https://code.google.com/p/php-mime-mail-parser/ which does not involve any installations. I even tried Zend and decoder from phpclasses.org, ...
0
votes
1answer
43 views

Nginx could not open mime.types . What changes are required?

I use the following to run Nginx : sudo /usr/local/Cellar/nginx/1.2.8/bin/nginx -c /usr/local/Cellar/nginx/1.2.8/nginx.conf It shoots out a error : nginx: [emerg] open() ...
0
votes
2answers
86 views

MIME type with jQuery 2.0.0

I have the following code to solve the IE local access XML issue: $.ajax({ type: "GET", url: options.xmlUrl, dataType: ($.browser.msie) ? "text" : "xml", success: ...
0
votes
1answer
54 views

MIME::Lite and inlined CSS images

I have the following code: #!/root/bin/perl use strict; use warnings; use MIME::Lite; my $data =<<"DATA"; <!DOCTYPE HTML PUBLIC > <html> <head> <style> #header { ...
0
votes
0answers
21 views

I want return MIME Message to client

I got some message from client that has two part of MIME and I have to return same type message to client.I try to make below code. @Path("/Contact") @Consumes("multipart/related") Public class ...
0
votes
1answer
101 views

function send email with attachment error

I'm trying to create from sending mail with attachment file via PHP, but there is an error, when mail sent to mail box the message arrive with out any attachments here screen shot of mailbox ...
0
votes
0answers
18 views

Open .obj in Azure Error [duplicate]

When I open .obj file in Windows Azure running Windows Server 2008 using Google chrome it gives error (eg: localhost/obj/test.obj) The error is shown below, may I know how can I solve this problem? ...
0
votes
0answers
59 views

SSRS 2012 email extention generate different mime part headers

We have recently migrated from SSRS2008 to SSRS2012 and discover that the attachments sent from us are not shown correctly in all email clients. After some inspections, we discover that the mime part ...

1 2 3 4 5 16