I am currently working on a new website using php, in which I have a form to automaticaly send emails to my adress.
I use the mail() php function, and I have it up and running using xampp and mercury on my localhost.
My question is, wether I need any special configurations when I start hosting my website at a hosting provider. Will it simply work through the mail() function? Or do I need to add more to it to make it work?
mail($email_to, $email_subject, $email_message, $headers);
I simply use this getting the message from a form.
Thanks in advance