http://www.perlmonks.org?node_id=1020976

quasi has asked for the wisdom of the Perl Monks concerning the following question:

I have been able to send mail a number of different ways. I can get mail. I can can encrypt and decrypt using Crypt::SMIME. But, how can I encrypt an email using SMIME AND send the encrypted mail?

Replies are listed 'Best First'.
Re: Sending an encrypted email
by vinoth.ree (Monsignor) on Feb 28, 2013 at 04:40 UTC
    ./smime -vc cacert smime-ent         # encrypt

    I have not tried this one and it gives idea on encrypt only.

    Please refer more on SMIME Encrypt Usage SMIME Utility

Re: Sending an encrypted email
by quasi (Initiate) on Feb 28, 2013 at 15:34 UTC
    I guess I should be asking if anyone knows how to send a 'preprepared" email. Most modules have a way of building a mail step by step then sending it in a obj fashion. I want to send one I already have prepared in a MIME format.