Re: a noob in need (installing apps)

2011-04-10 Thread Pythia the Oracle
Many thanks, Vasil! I understand now. I just couldn't find the 'mailer' folder after installation. Found it, included it in INSTALLED_APPS, and it's up and running. Yay! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: a noob in need (installing apps)

2011-04-09 Thread Vasil Vangelovski
A reusable application is a package. To use it you need to put the package name in INSTALLED_APPS and depending if it provides any models do syncdb after that (for mailer you need that). Usually there's detailed instructions on what you need to do to get up and running with a reusable app. But an

a noob in need (installing apps)

2011-04-09 Thread Pythia
Hi! I've been building a django-powered site for the past week and having great fun. I've got my site (on my dev server) doing exactly what I want it to do. Now I want to set up an automatic email-sending algorithm using django-mailer: http://code.google.com/p/django-mailer/ I installed it suc