Re: Django Email Model

2016-07-21 Thread ludovic coues
https://docs.djangoproject.com/en/1.9/topics/db/examples/many_to_many/ Each student can subscribe to more than one newsletter Each newsletter have many of students. 2016-07-21 15:20 GMT+02:00 Ant : > Being a Django "newcomer" I am hoping someone can help us with this simple > problem. > > We h

Django Email Model

2016-07-21 Thread Ant
Being a Django "newcomer" I am hoping someone can help us with this simple problem. We have a model for students containing names and email addresses. We want them to subscribe to various newsletters. Is it better to have a separate model for newsletters and how would we produce the list for

Re: Email model

2007-09-12 Thread wiz
On 9/11/07, Collin Grady <[EMAIL PROTECTED]> wrote: > > You are likely going to have to write that sort of app yourself. Or use dbmail as mail catcher to automaticaly catch all mail. Then you'll need only to tweak inspectdb's interfaces to dbmails' tables. --~--~-~--~~~---

Re: Email model

2007-09-10 Thread Collin Grady
You are likely going to have to write that sort of app yourself. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscrib

Re: Email model

2007-09-10 Thread Anton P. Linevich
Greeting, Joe! Mon, Sep 10, 2007 at 02:55:10PM +0100, polonium210 wrote: > I'm hoping for a model that splits emails into several different tables, e.g. > a table of senders, a table of recipients, the sent time, the text body, a > table of attachments and possibly some other tables. If these a

Re: Email model

2007-09-10 Thread Joe Bloggs
I'm hoping for a model that splits emails into several different tables, e.g. a table of senders, a table of recipients, the sent time, the text body, a table of attachments and possibly some other tables. If these are indexed I can create some forms and views that query the model to say show all e

Re: Email model

2007-09-10 Thread Anton P. Linevich
Greeting, Joe! Mon, Sep 10, 2007 at 02:24:11PM +0100, polonium210 wrote: > I would like to create a model for email so that I can write an application > to collect all my emails and then I'll be able to search through them and > actually find old relevant emails. > Does this model exist anywher

Email model

2007-09-10 Thread Joe Bloggs
I would like to create a model for email so that I can write an application to collect all my emails and then I'll be able to search through them and actually find old relevant emails. Does this model exist anywhere or even better does this application exist? Regards, Joe --~--~-~--~