PHP Classes

File: pgp_enc_demo.php3

Recommend this page to a friend!
  Classes of James Moore   pgp_enc.Class   pgp_enc_demo.php3   Download  
File: pgp_enc_demo.php3
Role: ???
Content type: text/plain
Description: A demo of the file in action
Class: pgp_enc.Class
Author: By
Last change:
Date: 24 years ago
Size: 931 bytes
 

Contents

Class file image Download
<?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; ?>