Docker base images for PHP-FPM

This commit is contained in:
ChiefSoft works
2022-07-31 14:54:16 +00:00
parent 7865c34b7d
commit 5959d57ac3
144 changed files with 19767 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
if (isset($_SERVER['TEST_EMAIL']) && trim($_SERVER['TEST_EMAIL']) != "") {
$email = $_SERVER['TEST_EMAIL'];
$subject = "PHP email test script";
$message = "This is a test email to confirm that the PHP mail function works!";
$headers = "From: " . $email;
mail($email, $subject, $message, $headers);
}