Buonasera a tutti,
è da un po' di tempo che uso phpList per inviare mail.
Mi stavo chiedendo in questi giorni qual'è il numero consigliato di email da inviare in un determinato tempo.
Ad esempio ho letto su altri thread che qualcuno consiglia di non superare le 300 mail ogni mezzora, altri consigliano un limite di 5 email ogni 3 secondi.
Questa è la mia attuale configurazione di phpList:
Codice:
# define the amount of emails you want to send per period. If 0, batch processing
# is disabled and messages are sent out as fast as possible
define("MAILQUEUE_BATCH_SIZE",250);
# define the length of one batch processing period, in seconds (3600 is an hour)
define("MAILQUEUE_BATCH_PERIOD",1200);
# to avoid overloading the server that sends your email, you can add a little delay
# between messages that will spread the load of sending
# you will need to find a good value for your own server
# value is in seconds (or you can play with the autothrottle below)
define('MAILQUEUE_THROTTLE',0);
# Domain Throttling
# You can activate domain throttling, by setting USE_DOMAIN_THROTTLE to 1
# define the maximum amount of emails you want to allow sending to any domain and the number
# of seconds for that amount. This will make sure you don't send too many emails to one domain
# which may cause blacklisting. Particularly the big ones are tricky about this.
# it may cause a dramatic increase in the amount of time to send a message, depending on how
# many users you have that have the same domain (eg hotmail.com)
# if too many failures for throttling occur, the send process will automatically add an extra
# delay to try to improve that. The example sends 1 message every 2 minutes.
define('USE_DOMAIN_THROTTLE',1);
define('DOMAIN_BATCH_SIZE',5);
define('DOMAIN_BATCH_PERIOD',120);
# if you have very large numbers of users on the same domains, this may result in the need
# to run processqueue many times, when you use domain throttling. You can also tell phplist
# to simply delay a bit between messages to increase the number of messages sent per queue run
# if you want to use that set this to 1, otherwise simply run the queue many times. A cron
# process every 10 or 15 minutes is recommended.
define('DOMAIN_AUTO_THROTTLE',0);
In un post di Fabrizio ho letto:

Originariamente Scritto da
Flame Networks
Per l'invio massivo di e-mail c'è un fattore fondamentale da considerare, ovvero Windows Live Sender Reputation Data.
Di cosa si tratta?
Segnalibri