phpbar.de logo

Mailinglisten-Archive

Re: [php] Mail ?
Archiv Mailingliste php_(at)_infosoc.uni-koeln.de

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [php] Mail ?



On Thu, Mar 18, 1999 at 01:08:10PM +0100, Alexander Meis wrote:
> hat einer von euch nen php script mit dem ich mails an den admin eines
> shopping systems senden kann ?

function mail_quick_hack($to,$subject,$message) {
  if ($fp = popen("/usr/sbin/sendmail -t","w")) {
    $out = "From: blafasel_(at)_do.main\n";
    $out .= "To: $to\n";
    $out .= "Subject: $subject\n\n";
    $out .= $message."\n";
    $out .= "-- \n";
    $out .= "Automatisch erstellte E-Mail.\n";
    fputs($fp,$out);
    pclose($fp);
  }
}

Kann man natürlich noch ausbauen ...

Björn.

Home | Main Index | Thread Index

php::bar PHP Wiki   -   Listenarchive