Skip to content

Instantly share code, notes, and snippets.

@gautamkrishnar
Created August 9, 2015 05:29
Show Gist options
  • Save gautamkrishnar/c993ce2ac192bd8176a3 to your computer and use it in GitHub Desktop.
Save gautamkrishnar/c993ce2ac192bd8176a3 to your computer and use it in GitHub Desktop.
Sending an e-mail using PHP
< ?php
// the message
$msg = "First line of textnSecond line of text";
// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,70);
// send email
mail("someone@example.com","My subject",$msg);
? >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment