X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fmail.phh;fp=web%2FObj%2Fmail.phh;h=d0d6ea726106173bf75a277b81a36f862d218c57;hb=a14d9d7ed95e0ad85851e423d4d3295b00e35d2b;hp=9f6bfbfff5f0ac1d77b3f4323a904405ba837251;hpb=ea90fe3a8a0952838a454d3613952597b1e58959;p=brisk.git diff --git a/web/Obj/mail.phh b/web/Obj/mail.phh index 9f6bfbf..d0d6ea7 100644 --- a/web/Obj/mail.phh +++ b/web/Obj/mail.phh @@ -8,15 +8,16 @@ $brisk_mail_hp = array( "text_charset" => "utf-8", "eol" => "\n" ); // references: @ -function brisk_mail($to, $subject, $text, $html, $refs) +function brisk_mail($to, $subject, $text, $html) { GLOBAL $brisk_mail_hp, $G_admin_mail; $hdrs = array( 'From' => $G_admin_mail, - 'Subject' => $subject, - 'References' => $refs + 'Subject' => $subject ); + // if ($refs != Null) + // $hdrs['References'] = $refs; $mime = new Mail_mime($brisk_mail_hp);