Re: mass email app for django

2014-01-17 Thread Sergiy Khohlov
In this case you have a problem with deliveries verifying. For example : You would like to send mass email to 1000 mail boxes and uses CC: or BCC: field for this one. But most of the SMTP has a limitation : ex postfix has reading only 50 item in CC list. As result you can not send most of the

Re: mass email app for django

2014-01-16 Thread Sven Aßmann
Hi Dedrerik, maybe your are right and just using a service like Mailchimp (which seems to be pretty userfriendly) would be the best way to go. I will defenetly have a look on it and try to find out if the users needs can be satisfied by that. Thanks a lot. Cheers, Sven On Thursday 16 January

Re: mass email app for django

2014-01-16 Thread Sven Aßmann
Hi Serge, unfortunately the smtp server is a managed server therefore no configuration to use a db as virtual mail backend can be performed. But thanks for your notes, especially i wasn't aware that djnago can use the postmark / rest api for mails out of the box. I need to investigate on that

Re: mass email app for django

2014-01-16 Thread Diederik van der Boor
Hi Sven, What you describe sounds like a Mailinglist.. Wouldn't it be possible to use Mailchimp or Aweber for this kind of service? >From Django you can use their API's. Mass-mailing has a risk of being blacklisted as server, at least make sure you send email via a whitelisted SMPT server (and

Re: mass email app for django

2014-01-15 Thread Sergiy Khohlov
Hello Sven, Look like it is not task for django. This is task for SMTP server. Of course you can create a task for SMTP server using django but main force of the your application is based on mail server. I'm proposing next solution: 1) Store usermail in database 2) configure smtp server for

mass email app for django

2014-01-14 Thread Sven Aßmann
Hi Group, currently i evaluating / research for a django app that supports mailing specific texts to a receipient list (like mass emailing). the corner features are: - email text should be editable (text or html nothing special) thru the admin app - the receipient list should be maintainable