answersLogoWhite

0


Best Answer

PHP mail has a variety of functions. The main function is to reroute mail from one server to another. The benefit of doing this is so one doesn't overload the current server.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What purpose does php mail serve?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the setting mail php used for?

When referring to the mail setting PHP, it is a server side scripting language that is designed for web development. PHP can also be used for a general purpose programming language.


How do you create a web mail script using PHP?

You can use phpMailer() Or, you can use mail() PHP function to send emails via PHP script.


Where could one find a manual for the PHP mail functions?

One can find a manual for the PHP mail functions on the PHP Mail website. One can read it online or print it out to read as a hard copy. The manual is also available on the 'NuSphere' website.


In PHP using localhost sending mail process coding?

mail(to,subject,message,headers);


What is new in PHP?

PHP is a recursive acronym for "PHP: Hypertext Preprocessor" created by The PHP Group. PHP is a widely used server-side scripting language and the general purpose of PHP is to create dynamic Web Pages. For more information, visit the PHP website.


What purpose does silicone serve in conditioners?

What purpose does silicone serve in conditioners


Is PHP a general purpose programming language?

I defiantly wouldn't call it General Purpose but if you are fluent in PHP then there is pretty much nothing you can't do in PHP (provided you understand HTML, CSS and JavaScript). I've used PHP for items which I could have made via programs such as Access and Visual Studios but PHP is more first hand and easier for me. One good point to programs in PHP is because they are Server-side it should work for all Users.


What means PHP?

PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.


What is the purpose of php?

PHP is a dynamic language meant to do server-side processing where plain HTML/client-side JavaScript isn't enough.


In PHP how to send data to email?

mail($to, $subject, $message, $headers); $headers is optional.


What is the purpose of a PHP session?

A PHP session serves quite a few purposes. PHP sessions store data that the web application developer would like to have preserved across the different page loads.


PHP allows you to send emails directly from a script?

PHP allows you to send emails via your server. This is most commonly done with the mail function, though more efficient alternatives exist like the pear Mail package. Keep in mind that if you have not configured PHP (and your server) to send emails, none of those functions will work.