/* 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
60 wyświetleń
Nick Vujicic World Outreach Episode 3: Japan to Philippines | Life Without Limbs - Follow Nick Vujicic as he travels around the world to 24 countries in one year, in his first ever web series! In this episode watch as Nick travels to the Philippines.
Dodał: Gall Anonim
Wyświetleń: 77
Dodał: Gall Anonim
Wyświetleń: 41
Dodał: Gall Anonim
Wyświetleń: 58
Dodał: Gall Anonim
Wyświetleń: 74
Dodaj swój komentarz
Komentarze