Advanced Example Here we will show the full capabilities of the PHP mail function. PHP Code:
"; $recipient = "Kris Arndt
,[email protected]"; $subject = "Testing the mail function"; $message = "Hello!
This is the body of the message.
"; $extra = "From: [email protected]
Reply-To: [email protected]
"; mail ($recipient, $subject, $message, $extra); echo "Sending mail..."; echo "