Questions tagged [mime]

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

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
  • Header information in non-ASCII character sets

MIME is specified in six linked RFC memoranda: RFC 2045, RFC 2046, RFC 2047, RFC 4288, RFC 4289 and RFC 2049, which together define the specifications. File name encoding is defined in .

1867 questions
0
votes
1 answer

How to get just a message's preamble and epilogue using IMAP

MIME messages can have so-called preambles and epilogues (see RFC 2046), which are ‘discardable’ text parts outside of the MIME harness (boundaries). One application is to signal that the message is a multi-part MIME message to non-MIME capable…
equaeghe
  • 1,415
  • 16
  • 33
0
votes
1 answer

Change button height in WebDynpro ABAP

For a touchscreen I need to increase the height of my buttons in a ABAP WebDynpro Application. Because there's no attribute for the height I read that it should be possible to add an image to the MIME Repository and then add this image to the…
Dyrdek
  • 395
  • 2
  • 10
  • 28
0
votes
1 answer

Combining plain text and HTML in a mail sent with email/smtplib

Using the example given here, I've written some code to send a mostly plain-text email with a hyperlink in the footer: def send_mail(subject, removed_ids, added_ids): parser = ConfigParser() parser.read('config.ini') from_address =…
Pyderman
  • 10,029
  • 9
  • 46
  • 85
0
votes
1 answer

NaCl Module HTML Interface

I'm developing a Chrome packaged app which displays a certain kind of document as HTML. I have the app working to some degree, but would like to add a feature allowing the user to open a file by clicking on a link to an applicable file. I am able…
Benjineer
  • 1,323
  • 16
  • 21
0
votes
1 answer

WCF MIME message from embedded device is "Malformed" - why?

I am running a WCF Service on Windows 10 using IIS Express. I am sending messages from an embedded devices and forming the POST request and XML by hand in the embedded code. I have been able to send a simple "single part" message and get a…
mek363
  • 275
  • 1
  • 3
  • 13
0
votes
2 answers

Does python have a robust pop3, smtp, mime library where I could build a webmail interface?

Does python have a full fledged email library with things for pop, smtp, pop3 with ssl, mime? I want to create a web mail interface that pulls emails from email servers, and then shows the emails, along with attachments, can display the sender,…
Blankman
  • 236,778
  • 296
  • 715
  • 1,125
0
votes
0 answers

error in the output using python?

input.txt: I am Hungry I am going home I am going to Germany complete code: class Part(object): """Represent a part in a multipart messsage""" def __init__(self, name, contentType, data, paramName=None): super(Part,…
sam
  • 193
  • 3
  • 14
0
votes
1 answer

How to set the text color to my MIME message.setSubject() methods text content?

I have written a java code to send a mail. I need to set the Email subject color,ie I need to set the color for the text of method message.setSubject(). Below are my codes : package comparexmlf1; import comparexmlf1.validatexml; import…
0
votes
1 answer

Which is best way to add footer text in email?

My target is to modify MIME contents & add footer note in email, without changing it's behavior. If email content content type is text/plain then I'm updating email content type to multipart/mixed as below: Content-Type:…
Pravin
  • 371
  • 1
  • 14
0
votes
1 answer

Http Response Contains MIME stream.. which has binary Images seperated by Boundary String.. need to get those Images and save using c#

when i make a HTTP request to the server it responses with the MIME Response Stream which has two or more images in it as Binary data which are separated by Boundary String Now i need to extract those images only and save them individually into…
jay
  • 27
  • 6
0
votes
1 answer

PHP not sending mail with attachment

I've got an HTML sign up/contact form that currently sends the fields in an email, no problem. The problem I'm having is attaching an uploaded file to the email. With the PHP I'm using at the moment for the file, the email is sending, but the MIME…
Aaron
  • 33
  • 3
  • 13
0
votes
0 answers

ZF2 mime type problems

And happy 2016 ;-) I'm actually trying to learn ZF2, and I have some problems that I dont' know how to resolve. First, you have to know that the project is running under vagrant. I have 2 modules: Admin Application I have a layout for each…
0
votes
1 answer

Simple web server: form post data is encoded in quoted-printable

I'm trying to implement a basic http server code to render a web form and process posted data when user hits submit. Code is hosted here: http://www.codeproject.com/Articles/137979/Simple-HTTP-Server-in-C However I'm getting post data in…
Serhan BAKIR
  • 49
  • 1
  • 7
0
votes
0 answers

Previewing MSWord (.doc and .docx) files in Horde Webmail

While making changes in Horde's mime_drivers.php file to allow inline HTML in emails, I noticed a setting that allows MS Word documents to be opened in an appropriate program: /* MS Word display. * This driver requires AbiWord to be installed. *…
CII
  • 1
  • 4
0
votes
1 answer

Save string to client with Open/Save dialog

I am using the following code to write the contents of a string (converted to a byte array) to the client in ASP.NET/C# byte[] data = StrToByteArray(strData); Response.ClearContent(); Response.AppendHeader("content-length",…
Tim
  • 51
  • 2
1 2 3
99
100