hi, can someone give me a short explenation how to attach a file in help with mome?
Thanks!
Deepr Regards HL-FF
Thanks!
Deepr Regards HL-FF
Using what protocol? SMTP?
jups!
the problem is, that i can attach a file, but the filename get deformed.
How are you creating the MIME headers, and where are you placing the B64 coded file
the string is the following:
ultrastring DB 13, 10
DB '--_ir', 13, 10
DB 'Content-Type: application; name=Hello.txt', 0Dh, 0Ah
DB 'Content-Transfer-Encoding: base64', 13, 10, 13, 10, 0
ultrastring DB 13, 10
DB '--_ir', 13, 10
DB 'Content-Type: application; name=Hello.txt', 0Dh, 0Ah
DB 'Content-Transfer-Encoding: base64', 13, 10, 13, 10, 0
ultrastring DB 13, 10
DB "--_ir", 13, 10
DB "Content-Type: application; name=",34,"Hello.txt",34, 13, 10
DB "Content-Transfer-Encoding: base64", 13, 10
DB "Content-Disposition: attachment; filename=",34,"Hello.txt",34,13,10,13,10,0
Try this, I added the last line, and inserted quote-marks ( the 34's ), is it still not working?
edit: sorry, made a mistake. now.
DB "--_ir", 13, 10
DB "Content-Type: application; name=",34,"Hello.txt",34, 13, 10
DB "Content-Transfer-Encoding: base64", 13, 10
DB "Content-Disposition: attachment; filename=",34,"Hello.txt",34,13,10,13,10,0
Try this, I added the last line, and inserted quote-marks ( the 34's ), is it still not working?
edit: sorry, made a mistake. now.
Forginforcer,
Using the excellent search feature, searching for file and attachment you would find:
http://www.asmcommunity.net/board/index.php?topic=3759&highlight=file+attachment
HTH
farrier
Using the excellent search feature, searching for file and attachment you would find:
http://www.asmcommunity.net/board/index.php?topic=3759&highlight=file+attachment
HTH
farrier
I learned a lot by sending a mail to myself with attachment,
then examine the mail-header of that mail.
then examine the mail-header of that mail.
Without the 34s ist works fine!
Thanks peoplEs!
Thanks peoplEs!
:alright: