Basic PHP mail() function

PHOTO EMBED

Wed Mar 23 2022 02:27:30 GMT+0000 (Coordinated Universal Time)

Saved by @pipermalibu #php

<?php     
$to_email = 'name @ company . com';
$subject = 'Testing PHP Mail';
$message = 'This mail is sent using the PHP mail function';
$headers = 'From: noreply @ company . com';
mail($to_email,$subject,$message,$headers);
?>
content_copyCOPY

https://www.guru99.com/php-mail.html