I'm using this snippet of Ant buildfile (see below), expecting sending mail
with attachments...
This works fine. But, when this kind of mail is read with Netscape
Messenger, attachments are automatically displayed within the email body,
instead of behaving like real attachments...
Why ? Encoding ? Is there a workaround to fix that behaviour ?
Thanks in advance
<?xml version="1.0" encoding="ISO-8859-1"?>
<project default="main" name="DPL">
<target name="main">
<mail encoding="uu" mailhost="my.smtp" subject="...">
<from name="me" address="[EMAIL PROTECTED]"/>
<bcc name="you" address="[EMAIL PROTECTED]"/>
<to address="[EMAIL PROTECTED]"/>
<message>
My message...
</message>
<fileset dir="C:\Temp\Tests_licences_1.2/DPTE/20030704-009">
<include name="*.dpl"/>
</fileset>
</mail>
</target>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]