Link to home
Create AccountLog 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
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
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!