Re: Not able to send email to more than 2 email address

2013-06-12 Thread roopasingh250
Dear Russell Keith-Magee Now its working! Thanks On Thursday, June 13, 2013 5:00:30 AM UTC+5:30, Russell Keith-Magee wrote: > > > > On Thu, Jun 13, 2013 at 3:28 AM, >wrote: > >> models.py >> >> class FollowerEmail(models.Model): >> report = models.ForeignKey(Report) >> email = models.Cha

Re: Not able to send email to more than 2 email address

2013-06-12 Thread Russell Keith-Magee
On Thu, Jun 13, 2013 at 3:28 AM, wrote: > models.py > > class FollowerEmail(models.Model): > report = models.ForeignKey(Report) > email = models.CharField('Email', max_length=100) > > views.py > > def what(request): > > "" > follower = FollowerEmail.objects.filter(report=repor

Not able to send email to more than 2 email address

2013-06-12 Thread roopasingh250
models.py class FollowerEmail(models.Model): report = models.ForeignKey(Report) email = models.CharField('Email', max_length=100) views.py def what(request): "" follower = FollowerEmail.objects.filter(report=report) list=[] for email in follower: li