This is really a student-like question..
I've been working on a ticket-reserve thing for an exhibition organiser. They are using a basic Godaddy shared hosting plan.
After making a reservation (and payment), the user will receive by email a ticket on which a codebar, the username and so on. I simply used phpmailer's send() because email sending via SMTP is very much limited by GoDaddy. Well.. our tickets would never be too popular but several days in a year there could be hundreds people buying tickets per day..
Sorry about the long background.
My question is: usually, do providers limit the time of using send(), mail(), sendmail() in php? I know some providers forbid such functions, but obviously some not. Those functions only have something to do with the CPU --- if the cpu feels it acceptable, then as many tickets as possible can be sent, right?
I did asked Godaddy several times (waiting in line 30+ minutes every time), but they didn't know. So please share little bit your experience, thank you very much!
And if there is any problem please favour me with your instructions..
I simply used phpmailer's send() because email sending via SMTP is very much limited by GoDaddy.
Please let me make it clearer here.. I did not use SMTP and I don't want to touch the 250 SMTP Relay for each email address -- I could, but that is really a different topic. I simply want to use phpmailer's send() function without any SMTP setting, and I wonder if there is any limitation (e.g. 1000 times to use this function).. Thank you again..