ProtonMail is an end-to-end encrypted email service. It uses client-side encryption to protect email contents and user data before they are sent to ProtonMail servers, in contrast to other common email providers such as Gmail, Outlook or Yahoo. The service can be accessed through a webmail client, the Tor network or dedicated iOS and Android apps. But how is it work? First of all you have to go to their website and sign up for an account. Then you are in. Their free service has some restrictions, though. You only get 500 MB of storage and can only send 150 messages per day. If you upgradeRead More →

Phpmailer és una classe php que permet enviar correus. Per entendre millor el seu funcionament utilitzarem el següent exemple: Si tenim una pàgina de registre i volem que l’usuari registrat rebi un missatge a la seva adreça de correu electrònic automàticament, haurem de crear un fitxer (anomenat generalment phpmailer.php) amb el següent codi en format php: <?php $to = $email; $subject = “Benvingut a Phrasam”; $message = “Benvingut a Phrasam, l’espai on trobaràs la manera de dir el que sents!”; $from = $_POST[’email’]; $name = $_POST[‘nom’]; $headers = “From: Phrasam”; mail($to,$subject,$message,$headers,$from); ?> La variable $to ens permet especificar a qui anirà dirigit el correu (en aquestRead More →