/* Copyright 2019, Polgle.pl - Wszelkie prawa zastrzeżone */ /** * @brief Brief description * * @param [in] $text string * @return encode UTF-8 characters on an e-mail subject */ function mail_base64($text) { return '=?utf-8?B?'.base64_encode($text).'?='; } function HTMLmail($odbiorca,$tytul,$wiadomosc,$nadawca='') { $KODOWANIE = 'UTF-8'; $tytullistu = mail_base64($tytul); $tresclistu = stripslashes($wiadomosc); $wersjasilnika = str_replace(PHP_EXTRA_VERSION , '' , PHP_VERSION); // definicja nagłówków $naglowki = empty($nadawca) ? '' : 'From: '.$nadawca.PHP_EOL; $naglowki .= 'Content-Type: text/html; charset='.$KODOWANIE.PHP_EOL; $naglowki .= 'MIME-Version: 1.0'.PHP_EOL; $naglowki .= 'X-Mailer: PHP/'.$wersjasilnika.PHP_EOL; $naglowki .= 'Content-Transfer-Encoding: 8bit'; $mail_result = mail($odbiorca,$tytullistu,$tresclistu,$naglowki); if (!$mail_result) { $err = error_get_last(); $errorInfo = sprintf( "%s%s\t [%d] %s" , $odbiorca , PHP_EOL , $err['type'] ,$err['message'] ); zapisz(sprintf("%s\n\t%s",$odbiorca,$errorInfo),'log_poczta.txt'); } return $mail_result; } ?>
Dodał:
Gall Anonim
132 wyświetleń
Lenny Magill demo's the hot, new, MCK! - CAA, makers of the Roni, have recently introduced the all new MCK! Straight out of the box, the MCK is able to be configured to virtually any Full or Compact ...
Dodał: Gall Anonim
Wyświetleń: 89
Dodaj swój komentarz
Komentarze