<?php
/***************************************
** Title.........: PGP Encrypted Mail Class
** Version.......: 1.0
** Author........: James Moore <james@phpuk.org>
** Filename......: pgp_enc_demo.php3
** Last changed..: 17/04/2000
** Notes.........: Based upon html_mime_mail.class
** by Richard Heyes <richard.heyes@heyes-computing.net>
** and Tobias Ratschiller <tobias@dnet.it>
** and Sascha Schumann <sascha@schumann.cx>.
**
***************************************/
include("pgp_enc.class");
$mail = new pgp_encrypted_mail("X-Mailer: PHP\PGP Mailer\n");
$text = "This is a test";
$mail->add_key("Your ID");
$mail->body = $text;
$mail->sign("Your ID","Password");
$mail->encrypt_body();
$mail->build_message();
$mail->send('Your Name', 'You@yourdomain.com', 'PGP Encryption Test', 'webmaster@yourdomain.com', 'PGP Encryption Class Test');
echo done;
?> |