Created
May 29, 2023 16:56
-
-
Save AbhishekGhosh/be4f5a72b7f336ee3e9ce4ce6d8ab20e to your computer and use it in GitHub Desktop.
PHP mail testing script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$to = "[email protected]"; | |
$from = "[email protected]"; | |
$subj = "sending email using php mail() function"; | |
$body = "This email is sent using php mail() function. This proves that your msmtp service is correctly configured with php."; | |
mail($to, $subj, $body); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment