Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 20, 2018 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/26e6ed6932ac3af43989a46075734ae4 to your computer and use it in GitHub Desktop.
Save parzibyte/26e6ed6932ac3af43989a46075734ae4 to your computer and use it in GitHub Desktop.
<?php
/*
Enviar correo desde PHP con mail
*/
$resultado = mail("tu_correo@dominio.com", "Yo soy el asunto del correo", "Yo soy el mensaje");
if ($resultado) {
echo "El correo fue enviado";
} else {
echo "El correo no fue enviado";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment