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 can I display text with a php script?
How to generate a character from an ascii value?
Write a query to find the 2nd highest salary of an employee from the employee table?
what is Abbreviavion of PHP?
What good is polymorphism?
How to remove html tags from data in php?
how we can retrive data in pdf along php mysql?
What are the steps involved to run php?
How can we create a database using PHP and mysql?
4 Answers Rushmore Consultancy,
Explain why would we use === instead of ==?
What are php variables?
How to remove leading and trailing spaces from user input values in php?