Following up with this issue: there is a mistake in the API, there is a missing 
"/" character in MailAttachment.class

[code]private static final String FILE_URL_PREFIX = "file://";[/code]

should be

[code]private static final String FILE_URL_PREFIX = "file://";[/code]

To go around this issue, you might want to do something like:

[code]MailAttachment emailAttachment = new MailAttachment(attachment, "", "", 
"attachment");
emailAttachment.setPath("/" + attachment.getAbsolutePath());[/code]

Credits to Mikaƫl from the support team

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=4c4ccc94-bd1a-45c3-89a2-0e8bd158ba43


----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to