Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!/usr/bin/perl -w
use strict;
my $msg = MIME::Lite->new(From => "me",
To => "you",
Subject => "hello",
Type => "multipart/mixed");
my $part = $msg->attach(Type => "text/plain",
Path => "/home/eryq/.cshrc",
Encoding => '7bit');
$msg->scrub;
$msg->print;