/ Published in: PHP
sendmail needs to be working and configured properly
uses popen and fputs
uses popen and fputs
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$message=<<<EOL --frontier Content-type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Poštovanje, uspešno ste kreirali novi nalog na aplikaciji Vaše korisni�ko ime: $username Šifra: $p_sifra Molimo vas da sa�uvate ove podatke, kako bi ih ubudu�e bez problema koristili. Pristup aplikaciji je mogu� putem: $http_path --frontier Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body> <h2>Poštovanje, </h2> <p> uspešno ste kreirali novi nalog na aplikaciji </p> Vaše korisni�ko ime: $username<br/> Šifra: $p_sifra<br/><br/> Molimo vas da sa�uvate ove podatke, kako bi ih ubudu�e bez problema koristili.<br/> <br/> Pristup aplikaciji je mogu� putem:<br/> $http_path </body> </html> --frontier-- EOL; print $message;