Re: How to receive Emails in my django app

2009-01-18 Thread Tiago S.
Hi, Take a look on this opensource app. It's a helpdesk system and it receives email and process then afterward. http://code.google.com/p/jutda-helpdesk/ Regards, On Jan 16, 4:11 pm, zweb wrote: > i can send emails easily using django. > > I want to set up an email address, where users can se

Re: How to receive Emails in my django app

2009-01-16 Thread Jeff Anderson
zweb wrote: > i can send emails easily using django. > > I want to set up an email address, where users can send email to the > app (designated email address) and my django application receives it, > parses it and stores it in database. > > What would be the easiest way to do it. ie " To receive em

Re: How to receive Emails in my django app

2009-01-16 Thread Ramdas S
You mean you want uses to send an email like i...@yourapp.com, and these mails need to be stored in the database. What I would do, though may not be the most efficient way is to use a python program, to access the email box, parse the mails and store it into simple table. Python has excellent emai

How to receive Emails in my django app

2009-01-16 Thread zweb
i can send emails easily using django. I want to set up an email address, where users can send email to the app (designated email address) and my django application receives it, parses it and stores it in database. What would be the easiest way to do it. ie " To receive email from users in Djan