I am using apache common email library to send email , as follow
// Create the attachment
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("mypictures/john.jpg");
attachment.setDisposition(EmailAttachment.ATTACHMENT);
attachment.setDescription("Picture of John");
attachment.setName("John");
// Create the email message
MultiPartEmail email = new MultiPartEmail();
email.setHostName("mail.myserver.com");
email.addTo("[email protected]", "John Doe");
email.setFrom("[email protected]", "Me");
email.setSubject("The picture");
email.setMsg("Here is the picture you wanted");
// add the attachment
email.attach(attachment);
// send the email
email.send();
I want to show progress bar until attached the file and send..
How can we do?
I don't see any way you can have a callback from commons-email which let's you know how much of the data is already transformed, so unless you hack into apache commons email itself you won't get notified from the library itself.
The only other way I see to "emulate" this is to build in some knowledge about how long a transfer usually takes, i.e. how many bytes you usually transfer per second and use this for a progress dialog display. But naturally this may lead to inaccurate information in the progress bar if transfer speed varies a lot over time or the application is used with different network connection types.