/* 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
57 wyświetleń
Saito: The Sushi God of Tokyo - Sushi Saito is a 3 Michelin Star sushi restaurant, and many regard it as the best in Japan. We got to spend the day with Saito, to ask him about his work, and to ...
Dodał: Gall Anonim
Wyświetleń: 78
Dodał: Gall Anonim
Wyświetleń: 56
Dodaj swój komentarz
Komentarze