Skip to content

Instantly share code, notes, and snippets.

@supermarsx
Created April 28, 2024 19:55
Show Gist options
  • Save supermarsx/dc3ef731caed425c4123f36c27edbf09 to your computer and use it in GitHub Desktop.
Save supermarsx/dc3ef731caed425c4123f36c27edbf09 to your computer and use it in GitHub Desktop.
PHP mail example
<?php
date_default_timezone_set($timezone);
$timezone = 'Europe/Lisbon';
$timeformat = 'd/m/Y h:i:s a';
$date = date($timeformat, time());
$number = wordwrap($argv[1], 30);
$charLimit = 500;
$email = "[email protected]";
$subject = "New number";
$message = wordwrap(
strintf(
"Date: %s de %s.",
$date, $number)
, $charLimit);
mail(
$email,
$subject,
$message
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment