How to change Content-Transfer-Encoding for email attachments?
- by user1837811
I have signed up for http://eudyptula-challenge.org/ challenge and this accepts
email attachments only in simple text format.
The files without extension (and also .zip file) are transferred with base64 encoding.
I want to send email attachment in simple text. This is how my makefile is transferred :-
Content-Type: text/plain; charset=UTF-8;
name="Makefile"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="Makefile"
b2JqLW0gKz0gaGVsbG8yLm8KCmFsbDoKCW1ha2UgLUMgL2xpYi9tb2R1bGVzLyQoc2hlbGwg
dW5hbWUgLXIpL2J1aWxkIE09JChQV0QpIG1vZHVsZXMKCmNsZWFuOgoJbWFrZSAtQyAvbGli
L21vZHVsZXMvJChzaGVsbCB1bmFtZSAtcikvYnVpbGQgTT0kKFBXRCkgY2xlYW4KCg==
How to configure Thunderbird to send a attachment files in as simple text??
Or I should any other email server or tool to send email attachments in simple text??