feature mail-plugin

Is it difficult to add an extra feature to the existing mail-plugin?
the feature to send an attachment?

I vote for this one too

My customer already asked if it is possible to send a pdf as attachement from within the system…

Guys- best solution: ezSMTP bean (http://ezjavabeans.com/ezsmtp/).

Price $35 - done.

SIMPLE syntax:

elements.bean_980.authLogin = true;
elements.bean_980.username = ‘YOURLOGINHERE’;
elements.bean_980.password = ‘YOURPASSWORDHERE’;
elements.bean_980.mailServer = ‘YOURMAILSERVERHERE’;
elements.bean_980.multipleSend = false; //set to true if you want to send more than one message at a time
elements.bean_980.subject = ‘[Servoy] ezSMTP Test’;
elements.bean_980.cc = ‘bcusick@servoy.com’;
elements.bean_980.from = ‘bcusick@servoy.com’;
elements.bean_980.to = ‘tom@hotmail.edu’;
elements.bean_980.body = ‘Hi Tom, this was sent directly from Servoy using ezSMTP. It turns out - it really IS easy.

BTW, did you notice that this is also HTML aware as well?’
elements.bean_980.htmlContent = true; //set to false if you’re just sending plain text email
elements.bean_980.sendMail();
//elements.bean_980.disconnect() //un comment this line is you set the “multipleSend” to true

You can do authentication, send MULTILPLE attachments (just separate with comma), etc.

Hope this helps,

Bob Cusick

Hey bob,

Thanks for the tip! Downloaded and tested…

Ciao