Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
4k views

C#: Class for decoding Quoted-Printable encoding?

Is there an existing class in C# that can convert Quoted-Printable encoding to String? Click on the above link to get more information on the encoding. The following is quoted from the above link for ...
6
votes
1answer
5k views

What is “=C2=A0” in MIME encoded, quoted-printable text?

This is an example raw email I am trying to parse: MIME-version: 1.0 Content-type: text/html; charset=UTF-8 Content-transfer-encoding: quoted-printable X-Mailer: Verizon Webmail X-Originating-IP: ...
2
votes
2answers
304 views

Ruby IMAP library doesn't decode mail subject

I have got mail message with following subject in my Gmail accout: "400, значение, значение" Here is the code I use to grab mail: imap = Net::IMAP.new('imap.gmail.com', 993, true, nil, false) ...
2
votes
1answer
200 views

Imap message encodeing problem

Some of the mails contents fetched from imap server looks like =C3=B6=C3=BC=C3=B6=C3=BC=C3=B6=C3=BC= what kind of encoding is this? Mail header encoding is UTF-8 but decoding with UTF-8 i got ...
1
vote
1answer
378 views

PHP sent emails have =0A=0A instead of new lines

For some time now I've had the problem of some of my users getting =0A=0A instead of new lines in emails I send to them via PHP. Correspondence via email client works well, but PHP generated emails ...
1
vote
1answer
204 views

Php error in mb_send_mail

I have got: mb_send_mail(): Unsupported transfer encoding "quoted-printable" - will be regarded as 8bit What should I do? Full headers: Content-Transfer-Encoding: quoted-printable Content-Type: ...
1
vote
2answers
148 views

What type of encoding is being used?

I am currently making a program in which one of its functions is to extract the HTML part of a Multipart email. I have accomplished that task fine however there is a type of encoding on some of the ...
1
vote
1answer
559 views

Encode mail as quoted-printable before sending in Rails

I saw this question and couldn't make use of it: http://stackoverflow.com/questions/1034135/ruby-email-encoding-and-quoted-printable-content I'd like to send out email as quoted-printable, but it's ...
1
vote
4answers
1k views

Best API/LIB for encoding/decoding base64/quoted-printable in Java [closed]

Possible Duplicate: Decode Base64 data in java Thanks to everyone in advance, I am aware of http://commons.apache.org/codec/api-release/org/apache/commons/codec/binary/Base64.html etc, can ...
1
vote
1answer
1k views

decode a quoted printable message in php

I have the string which that encoded in quoted-printable. How do I decode this in php? Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vestibulum felis = pede, vestibulum et, ullamcorper ...
1
vote
1answer
610 views

MS Entourage 2008 and quoted-printable encoding

I need to send an HTML email. All email clients (Outlook, Thunderbird ..) but Entourage can receive and read this email without major problems. Entourage, though is breaking the content and displays ...
0
votes
3answers
60 views

Decoding Quoted printable message

Iam having trouble decoding Japanese message, the final output seems to be a garbage value. Encoded ISO-2022-JP Quoted Printable Message: ...
0
votes
1answer
74 views

VB.NET Convert Unicode 8 (UTF8) into Regular American ASCII

I have thing problem here is the debugging outputs "?uƒn74tn5187r&key=6e6e0936c4e6c48be56a72eba8964df0" should be "?u=83n74tn5187r&key=6e6e0936c4e6c48be56a72eba8964df0" I have tried ...
0
votes
0answers
70 views

Decoding Quoted-printable of TMail::Mail

I am having a trouble with decoding the unicode string of Mail::Body. If I have a Spanish lowercase i (í) in the body of an email, it shows as follows: email.body => "Spanish lowercase i ( ? )" ...
0
votes
1answer
58 views

decoding quoted-printables

I looking for a way to decode quoted-printable and store it. The quoted-printable are for arabic characters and looks like this: D8=B3=D8=B9=D8=A7=D8=AF I need to convert it to a string, and store ...
0
votes
2answers
47 views

detect if a message string is QP Encoded

On FreeBsd system, i am trying to determine if an email message in the form of a c style string is qp encoded? Is there a unix tool like iconv which can read in chunk of data and output the detected ...
0
votes
1answer
41 views

Encode to Quoted-Printable in TSQL (or FreeMarker)?

I store the message part of lots of emails in an MsSql database. Before sending an email with the message I need to encode it into Quoted-Printable format. I don't encode it before saving it to db ...
0
votes
1answer
382 views

sending mail with swift mailer (php) to gforge email gateway, equal signs (=) at the end of lines

Now, i have another problem with gForge. I have a form in our intranet to create new trackers in our gforge system. We use Kohana and the Swift Mailer to send smtp emails. This is what i get (i send ...
0
votes
1answer
252 views

Stream decoding base64 and quoted-printable in PHP

As i have discovered stream_filter_append($cin, 'convert.quoted-printable-decode'); and stream_filter_append($cin, 'convert.base64-decode'); don't decode stream line-by-line. These functions ...
0
votes
2answers
484 views

Convert 8bit MIME message to quoted-printable

What is the easiest way to convert a MIME e-mail containing raw 8bit parts to a RFC822 compliant message containing only 7bit parts ? The parts have to be automatically converted to ...
0
votes
1answer
244 views

Sending email from website using mailto link

That might be silly question but I really need to know the answer. If I got the Outlook client installed on my machine and I click on the mailto link on the website the subject and body specified in ...
0
votes
2answers
471 views

Reading Text with Accent - Python

I did some script in python that connects to GMAIL and print a email text... But, often my emails has words with "accent". And there is my problem... For example a text that I got: "PLANO DE ...
0
votes
2answers
144 views

Take control over email subject in rails

I need to change the subject of the emails on a low level. What rails does is encoding the subject as quoted in whatever encoding is set. What I need is to make it quoted but split into chunks of 64 ...