answersLogoWhite

0

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.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

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.


What purpose does php mail serve?

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.


How do you configure any mail server?

I found this great tutorial about configuring a mail server... it is explained on Axigen (this is what I use: www.axigen.com), but I think it's available for any configuration. http://sampi.frizda.net/2009/11/setting-up-php-mail-in-windows/ Hope it's useful.


In PHP using localhost sending mail process coding?

mail(to,subject,message,headers);


Code for mobile alert in PHP?

You can use an email to SMS gateway to send SMS messages from a PHP script. This will likely be a paid for service, there used to be some network specific free services, but I think most of them are now closed, presumably due to abuse from spammers. Search for "email to SMS gateway". To send e-mail from PHP see the 'mail' command.


Which language is used more for websites PHP or ASP.net?

Php


What is the use of a question mark in php?

It is used to tell the sever to use the PHP parser. To begin php you must use <?php, and to end it, it is ?>.


In PHP how to send data to email?

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


How does PHP function in applications?

in php used for one typ website


What file extension is used to save a php file after code has been written into it?

The file extension for PHP is .php


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.