Files
RTG/webroot/email_test.php
2026-06-19 20:08:01 +06:00

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);
?>