Gmail save image programmatically -


i run small website. want users send email attached photos mobile devices our website gmail address. there way of programmatically logging gmail , saving image file locally?

i realize 99.9% of time done letting users upload image file directly on website. wondering if there way using email, because in particular case more user friendly.

cheers.

yes, you'll need code pop3 email reading in language of choice.

java: http://www.oracle.com/technetwork/java/javamail/index.html python: https://docs.python.org/2/library/poplib.html php: https://code.google.com/a/apache-extras.org/p/phpmailer/wiki/phpmailer 

here's example in java: http://alvinalexander.com/java/javamail-pop-pop3-reader-email-inbox-example


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -