Question:Which of the following is the correct code for sending email in PHP?
A
mail("to@example.com","subject","body","From:from@example.com\r\n");B
mail("from@example.com","subject","body","To:to@example.com\r\n");C
mail("subject","body","to@example.com"","From:from@example.com\r\n");D
mail("subject","body","from@example.com"","to@example.com\r\n");
+ AnswerA
+ Report