Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access email attachments using gmail Contextual Gadget

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

like image 666
Harish Anchu Avatar asked Nov 13 '22 03:11

Harish Anchu


1 Answers

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

like image 180
Bellash Avatar answered Nov 14 '22 22:11

Bellash