<?php
/***************************************
** Title.........: PGP Encrypted Mail Class
** Version.......: 1.0
** Author........: James Moore <
[email protected]>
** Filename......: pgp_enc_demo.php3
** Last changed..: 17/04/2000
** Notes.........: Based upon html_mime_mail.class
** by Richard Heyes <
[email protected]>
** and Tobias Ratschiller <
[email protected]>
** and Sascha Schumann <
[email protected]>.
**
***************************************/
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', '
[email protected]', 'PGP Encryption Test', '
[email protected]', 'PGP Encryption Class Test');
echo done;
?>