Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. function email($to, $from, $subject, $message){
  3.         $headers = "";
  4.         $headers .= "From: " . $from . "\r\n";
  5.         $headers .= "Reply-To: no-reply@sslease.com" . "\r\n";
  6.         if(     mail($to, $subject, $message, $headers)){
  7.                 return true;
  8.         }
  9.         return false;
  10. }
  11.  
  12. ?>