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 |
Which function will you use to create an array?
What is difference between include and include_once in php?
What is the difference between urlencode and urldecode ?
What is the use of array_search() in php?
What is the scope of a variable defined outside a function?
What is echo and print in php?
When are you supposed to use endif to end the conditional statement?
Which is the dependent variable?
Explain me is it possible to destroy a cookie?
Which function is used to strip whitespace?
How to join multiple strings stored in an array into a single string?
What are form input html tags?