send_email($recipient, $subject, $message)
Parameters: |
|
---|---|
Returns: |
TRUE if the mail was successfully sent, FALSE in case of an error |
Return type: |
bool |
Sends an email using PHP’s native mail() function.
Note
All that this function does is to use PHP’s native mail
mail($recipient, $subject, $message);
For a more robust email solution, see CodeIgniter’s Email Library.
Please login to continue.