Skip to content

Instantly share code, notes, and snippets.

@64lines
Last active September 10, 2015 19:18
Show Gist options
  • Select an option

  • Save 64lines/11222454 to your computer and use it in GitHub Desktop.

Select an option

Save 64lines/11222454 to your computer and use it in GitHub Desktop.
Send email with PHP
<?php
$mensaje = "Línea 1\r\nLínea 2\r\nLínea 3";
$mensaje = wordwrap($mensaje, 70, "\r\n");
mail('caffeinated@example.com', 'Mi título', $mensaje);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment