Question: Which of the following PHP function is used to send email?
A
B
C
D
email()
B
mail()
C
send_mail()
D
send_email()
Note: Not available
mail("to@example.com","subject","body","From:from@example.com\r\n");
mail("from@example.com","subject","body","To:to@example.com\r\n");
mail("subject","body","to@example.com"","From:from@example.com\r\n");
mail("subject","body","from@example.com"","to@example.com\r\n");