reference, tutorial, tutorials, help, example, photoshop, html, php, mysql, 3d software, internet, graphics, programming, multimedia

Sending e-mails with PHP mail() function [2/3]

PHP mail() function offer some parameters. Function will return true on success and false on fail. Parameter $headers is not obligate. The main format of mail() function is:

<?php
$send_mail 
mail($to$subject$message$headers);
?>
All of this we can put in one PHP function for more functionality and clear code.
Variable $to is used for specifying address on which we want to send e-mails.
Variable $subject is used for specifying subject of e-mails.
Variable $headers is used for specifying headers of e-mails.[Not required]

<?php
function send_mail($from_name$from_email$message) {

    
// on which e-mail must send messages
    
$to "contact@mysite.com";

    
// subject of the message
    
$subject "Message from Mysite.com";

    
// headers for setting From: and Reply-To:
    
$headers .= "From: $from_name <$from_email>\n";
    
$headers .= "Reply-To: $from_name <$from_email>\n";

    
// try to send mail
    
$send_mail mail($to$subject$message$headers);

    
// check and return result
    
if ($send_mail) {
        return 
true;
    } else {
        return 
false;
    }
}
?>
reference, tutorial, tutorials, help, example, photoshop, html, php, mysql, 3d software, internet, graphics, programming, multimedia - Sending e-mails with PHP mail() function [2/3] - reference, tutorial, tutorials, help, example, photoshop, html, php, mysql, 3d software, internet, graphics, programming, multimedia

Need a specific tutorial? Do not hesitate and submit a request!
Related Tags: Mail server+functionality+php+for sending mail receiving mails  php function sending mails on specific date  mail function php send html mails  php mail function sending html  mail() function in php for sending files  sending pictures with php mail function  sending mail function PHP windows  sending html with php mail function  sending mail function form php  mail function not sending results  php sending mails  "sending mails in php"  tutorials on sending form data through php mail function  sending mails from php and mysql  method for sending mails in php  functions for sending mails with php  problems sending receiving e-mails  how many mails to mail functon of php  sending mail with php_self  php + mail + sending links