Gmail (or POP3) library for Android development [closed]
Asked Answered
C

2

0

I'm looking for a library to access Gmail which can handle attachments. Can someone point me towards this please?

Thanks

Counsel answered 9/1, 2011 at 0:21 Comment(1)
there is a javax mail port for Android. For an example and references, read this other answer.Catarinacatarrh
M
0

Gmail has an Oauth protocol for accessing IMAP and SMTP. You can read more about it here, including samples: http://code.google.com/apis/gmail/oauth/code.html

Mabel answered 9/1, 2011 at 1:37 Comment(0)
A
2

This link might be helpful.....

http://www.jondev.net/articles/Sending_Emails_without_User_Intervention_%28no_Intents%29_in_Android

make changes in sendMail section for attachment..

    public synchronized void sendMail(String subject, String body, String sender, String recipients, File attachment) throws Exception {
    try{
    MimeMessage message = new MimeMessage(session);
    message.setSender(new InternetAddress(sender));
    message.setSubject(subject);MimeBodyPart mbp1 = new MimeBodyPart();
    mbp1.setText(body);

    MimeBodyPart mbp2 = new MimeBodyPart();
    FileDataSource fds = new FileDataSource(attachment);
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setFileName(fds.getName());

    Multipart mp = new MimeMultipart();
    mp.addBodyPart(mbp1);
    mp.addBodyPart(mbp2);

    message.setContent(mp);

    if (recipients.indexOf(',') > 0)
        message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipients));
    else
        message.setRecipient(Message.RecipientType.TO, new InternetAddress(recipients));
    Transport.send(message);
    }catch(Exception e){

    }
}`
Albacore answered 8/6, 2012 at 11:28 Comment(0)
M
0

Gmail has an Oauth protocol for accessing IMAP and SMTP. You can read more about it here, including samples: http://code.google.com/apis/gmail/oauth/code.html

Mabel answered 9/1, 2011 at 1:37 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.