Autoload images to website via email
- Started
- Last post
- 7 Responses
- plash0
you could probably frankenstein something together. http://codecanyon.net/category/p…
- Gordy220
Bumping for the brits...
- Nutter0
There is a "cms" system called Stacy where you jut upload images to a folder and it creates the rest. If you also want tet for the proect you upload a txt file also to the folder.
Its usefull for smaller websites and its free, so you could properbly build on that:
http://www.staceyapp.com/
- spot130
You can take a look at this project: https://code.google.com/p/php-mi…
..it uses the 'mailparse' php package:
http://pecl.php.net/package/mail…
- Gordy220
Cheers Spot - looks a little over my head but I'll give it a go.
- plash0
few ways to do this.
you mentioned "people" (users) and mobile centric which means you'll definitely need the box-o-tricks (mysql/php/jquary and a pretty flexible css framework. id also have some security with that email if there's a processing module at the end of that chain.hate to suggest this since it's probably an overkill and people hate it. buutttt wordpress does this. user management, email direct to post (although that isn't difficult) , flexible aesthetics and already built for you. http://codex.wordpress.org/Post_…
you could use a naked theme and hack away at it. i think that;'s the quickest if you don't know your way around php well. but you can cut/paste into something.
as for do it yourself:
use php to check a mail account (imap pop3; im assuming a lamp setup) Then use php to process any mail it finds. You could use PHP's IMAP functionality, which supports IMAP, POP3 and NNTP.http://php.net/manual/en/book.im…
(you got a lot of control over the mailbox)it's a good project to lean mysql/php with.
- Gordy220
Plash - would be perfect if i didn't have 4 days to build to! I thought there may be a way to leverage current sites (photobucket etc) and an RSS feed reader or something.