Link to home
Start Free TrialLog in
Avatar of KNVB HK
KNVB HKFlag for Hong Kong

asked on

MIME spec./library wanted

Where can I get the MIME lib. from Internet?

OR

Where can I get the implementation /alogrith information of
MIME ?
ASKER CERTIFIED SOLUTION
Avatar of mcrider
mcrider

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of KNVB HK

ASKER

Adjusted points to 125
Avatar of KNVB HK

ASKER

Well!thank you very much.
Whether this code can encode the Chinese?

Avatar of mcrider
mcrider

It doesn't matter... It can encode and decode any file... Text files, JPGs, Gifs, etc...

Thanks for the points! Glad I could help!


Cheers!
Avatar of KNVB HK

ASKER

In fact, I am writing an email program.
Can you tell me the format of email content?
From this time, I have completed the send email part.
However,how can I pack the attachment and the email content together?

thank you very much
Basically, all you have to do is encode your attachment and send it as part of the body of the message... MIME encoding is alot tricker than UUENCODING... With MIME, you have to deal with putting headers together... If you don't have to support MIME, I wouldn't...


There are a couple of examples here at http://www.planet-source-code.com 

Go to the Visual Basic section and then search for mime


Cheers!