/* 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
46 wyświetleń
Imagine Cup World Finals 2017 Arrivals - The top teams from around the world have arrived in Seattle to compete for the 2017 Imagine Cup World Finals! Watch with the world on July 27th as the top ...
Dodał: Gall Anonim
Wyświetleń: 45
Dodał: Gall Anonim
Wyświetleń: 52
Dodał: Gall Anonim
Wyświetleń: 30
Dodał: Gall Anonim
Wyświetleń: 55
Dodał: Gall Anonim
Wyświetleń: 34
Dodaj swój komentarz
Komentarze