5

Is there any way to get mail attachments using gmail Contextual Gadget. With extractors it is not possible to read mail attachments.

Harish Ambady
  • 12,525
  • 4
  • 29
  • 54
  • Have you looked at the "related" column which contains a question with almost identical wording? [Accessing attachments using gmail contextual gadgets](http://stackoverflow.com/q/3296329) – Pekka Jun 15 '13 at 17:47
  • @Pekka웃 yup.. those items didn't help. :( – Harish Ambady Jun 15 '13 at 17:49

1 Answers1

1

contextual gadgets limitations:

  • An extractor can return a maximum of 1,000 characters in each of its output fields.
  • Extractors can not read email attachments.

     source: https://developers.google.com/gmail/contextual_gadgets
    

Alternatively you can use IMAP or POP functions http://us1.php.net/imap Or get inspired by reading this post Downloading attachments to directory with IMAP in PHP, randomly works

Community
  • 1
  • 1
Bellash
  • 7,560
  • 6
  • 53
  • 86