/* 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
43 wyświetleń
Die tydlyn (17) - Simson - Soos Israel Kanaan moes skoonmaak van die afgode, so maak ons ons eie lewe skoon van die afgode. Gesag wat rondlê maak my een van die 9700 wat ...
Dodaj swój komentarz
Komentarze