hey!
i am using mail() function to send emails to all subscribers (let's say its about weekly horoscope).
i noticed that php script takes around 40 seconds to send all 40 emails. obviously this mail() function doesnt just send emails to smtp server (what i expected) for later processing but it tries to verify each address or what?
is there any better way to do it like this:
while there_are_records_in_database {
--mail(to,subject,body)
}
another option is to put more recipients under "to" but this is not what i want - i dont want to show all of them in each email.
how can i make my newslist function faster that it wont fail when there will be 100 subscribers?
Matjaz /kesl