Apart from mail() function to send emails,is there any other
functions in PHP to send emails?
Answers were Sorted based on User's Feedback
Answer / m sujata
except mail() function you can use imap_mail() function .
Syntax is as follows :
bool imap_mail ( string $to , string $subject , string
$message [, string $additional_headers= NULL [, string $cc=
NULL [, string $bcc= NULL [, string $rpath= NULL ]]]] )
| Is This Answer Correct ? | 24 Yes | 0 No |
Answer / sathya
Except Mail() function you can use this mb_send_mail()
function, syntax is as follows
bool mb_send_mail ( string $to , string $subject , string
$message [, string $additional_headers= NULL [, string
$additional_parameter= NULL ]] )
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pankaj patil
using html tag <mailto> you can send a mail.
| Is This Answer Correct ? | 10 Yes | 23 No |
What is the meaning of symbol '$' in jquery?
Tell me in php, objects are they passed by value or by reference?
How can we create a database using PHP and mysql?
How can we display information of a variable and readable by a human with php?
What are the ways we can destroy a session variable ?
Define object-oriented methodology?
How to redirect https to http url and vice versa in .htaccess?
What is form submission?
How to download a php script directly in your script page?
3 Answers A1 Technology, Zmanda,
What type of comments are supported by PHP.
How to add comments in php?
What are super global variables in php?