Search found 8 matches
- Fri Jun 06, 2008 1:57 pm
- Forum: Swift Mailer
- Topic: Is't possible to user STARTTLS on version 3
- Replies: 1
- Views: 1207
Is't possible to user STARTTLS on version 3
Hello, Is't possible to use STARTTLS on version 3 ? I've try to change handshake method on Swift.php but I think swiftmailer can't understand the response... Fatal error: Uncaught exception 'Swift_BadResponseException' with message 'Expected response code(s) [250] but got response [220 2.0.0 Ready...
- Sat Mar 08, 2008 4:49 am
- Forum: Swift Mailer
- Topic: How to update to each mail on batchSend
- Replies: 4
- Views: 1592
Re: How to update to each mail on batchSend
You should use the AntiFlood plugin to handle the sleep()/disconnect() stuff. It doesn't only work with batchSend(), it works whichever way you send. OK ! I thinked it's worked only with batchSend() ! Antiflood plugin work like my script... I think ;) The Sendmail connection does persist yes, putti...
- Sat Mar 08, 2008 2:29 am
- Forum: Swift Mailer
- Topic: How to update to each mail on batchSend
- Replies: 4
- Views: 1592
Re: How to update to each mail on batchSend
I wan't to try this way on my 30 000 users but can you confirm :
- it's possible to open connection with sendmail for more than one email or I should put SendMail connection on the loop ?
- this way send email without revealing all addresses
thanks a lot to your help !
- it's possible to open connection with sendmail for more than one email or I should put SendMail connection on the loop ?
- this way send email without revealing all addresses
thanks a lot to your help !
- Fri Mar 07, 2008 11:16 am
- Forum: Swift Mailer
- Topic: Update database on every mail sent?
- Replies: 6
- Views: 2026
Re: Update database on every mail sent?
You can try to modify Verbose plugin : http://swiftmailer.org/wikidocs/v3/plugins/verbose
Look the example on the bottom of this page
Look the example on the bottom of this page
- Fri Mar 07, 2008 7:55 am
- Forum: Swift Mailer
- Topic: How to update to each mail on batchSend
- Replies: 4
- Views: 1592
Re: How to update to each mail on batchSend
It's me too ;) I've find ! I've use VerbosePlugin to update each user... But if I don't want use batchSend, what do you think about my code : <?php // instancie l'objet et la connexion via sendmail $swift = new Swift(new Swift_Connection_Sendmail(Swift_Connection_Sendmail::AUTO_DETECT)); ...
- Fri Mar 07, 2008 4:07 am
- Forum: Swift Mailer
- Topic: How to update to each mail on batchSend
- Replies: 4
- Views: 1592
How to update to each mail on batchSend
Hello,
How it's possible to update user row (exemple : on sql table) after send if I use batchSend ?
thanks !
How it's possible to update user row (exemple : on sql table) after send if I use batchSend ?
thanks !
- Fri Mar 07, 2008 1:04 am
- Forum: Swift Mailer
- Topic: What's the best method to mass-mailing
- Replies: 2
- Views: 1292
Re: What's the best method to mass-mailing
Thanks ! Antiflood plugin ok
I'm going to try this plugin
- Thu Mar 06, 2008 2:09 pm
- Forum: Swift Mailer
- Topic: What's the best method to mass-mailing
- Replies: 2
- Views: 1292
What's the best method to mass-mailing
Hello, First, sorry for my bad english (french user). I'use my own mass-mailing script to send on 30 000 subcribers (on dedicated server with postfix ...). My script (on command line interface) use phpmailer but I wan't to try swiftmailer ;) My script provided a loop with 20 seconds pause of 100 mai...