Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php mail

<?php
    mail("recipient@example.com",
        "This is the message subject",
        "This is the message body",
        "From: sender@example.com" . "
" . "Content-Type: text/plain; charset=utf-8",
        "-fsender@example.com");
?>
 
PREVIOUS NEXT
Tagged: #php #mail
ADD COMMENT
Topic
Name
4+5 =