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 |
How are sessions maintained?
What is the major php security hole? How to avoid?
Who is the father of PHP and explain the changes in PHP versions?
15 Answers ADISoft Tech, Genpact, PropTiger, TWA,
Tell me what is the difference between get and post?
Is time a dependent variable?
What is difference between post and put in rest?
How to Pass JSON Data in a URL using CURL in PHP?
How a variable is declared in php?
How can we find the number of rows in a result set using PHP?
Does facebook use php framework?
Explain how we can get the number of elements in an array?
How do you remove whitespace from the beginning and end of a $string variable?