8 lines
203 B
PHP
8 lines
203 B
PHP
<?php
|
|
$to = "rajib_0104041@yahoo.com";
|
|
$subject = "My subject";
|
|
$txt = "Hello world! This is test body";
|
|
$headers = "From: no_reply@readytogoletters.com" . "\r\n" ;
|
|
|
|
mail($to,$subject,$txt,$headers);
|
|
?>
|