Tikriname PHP mail funkcija
Būna situacijų kai greitai reikia patikrinti ar veikia PHP mail funkcija, tam panaudosim šią PHP kodo dalį:
<?php $rand = rand(100,999); $to = '[email protected]'; $subject = 'Testuojame naudojant PHP: '.$rand; $message = 'Tai testinis el.pranesimas, testuojame mail funkcija naudojant PHP. Zinutes ID Nr.: '.$rand; $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); echo "Zinute isiusta. Zinutes ID: ".$rand; ?>