Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

send email in php

<?php
    ini_set( 'display_errors', 1 );
    error_reporting( E_ALL );
    $from = "test@hostinger-tutorials.com";
    $to = "test@hostinger.com";
    $subject = "Checking PHP mail";
    $message = "PHP mail works just fine";
    $headers = "From:" . $from;
    if(mail($to,$subject,$message, $headers)) {
		echo "The email message was sent.";
    } else {
    	echo "The email message was not sent.";
    }
Source by www.hostinger.com #
 
PREVIOUS NEXT
Tagged: #send #email #php
ADD COMMENT
Topic
Name
5+3 =