Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^4: Using Net::SMTP to send pdf attachment

by Anonymous Monk
on Mar 16, 2018 at 15:31 UTC ( [id://1211049]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Using Net::SMTP to send pdf attachment
in thread Using Net::SMTP to send pdf attachment

Thanks for confirming that the pdf is a binary file.

I tried with the code below (by astrobal from http://www.perlmonks.org/?node_id=1189197) but the pdf file opens with nothing:

$smtp->datasend("Content-Type: application/pdf; name=\"$attachBinaryFi +le\"\n"); $smtp->datasend("Content-Transfer-Encoding: base64\n"); $smtp->datasend("Content-Disposition: attachment; filename=\"$attachBi +naryFile\"\n"); $smtp->datasend("\n"); open(DAT, "$path/$attachBinaryFile") || die("Could not open binary fil +e!"); binmode(DAT); local $/=undef; while (read(DAT, $picture, 4096)) { $buf = &encode_base64( $picture ); $smtp->datasend($buf); } close(DAT); $smtp->datasend("\n"); $smtp->datasend("--$boundary\n");

I changed "Content-Type: image/jpeg;" in his code to "Content-Type: application/pdf;".

Replies are listed 'Best First'.
Re^5: Using Net::SMTP to send pdf attachment
by poj (Abbot) on Mar 16, 2018 at 15:40 UTC

    Can you post the complete script please.

    poj

      Hi poj thanks. Here's the complete code:

      use strict; use Net::SMTP; use MIME::Base64; my $smtphost = 'some_smtp_host'; my $username = 'username'; my $password = 'password'; my $emailto = 'to@hello.com'; my $emailfrom = 'from@hello.com'; my $subject = 'Hello world'; my $message = 'Test message'; my $smtp = Net::SMTP->new($smtphost, Debug => 1, Timeout => 5); $smtp->datasend("AUTH LOGIN\n"); $smtp->datasend(encode_base64($username)); $smtp->datasend(encode_base64($password)); $smtp->mail($emailfrom); $smtp->to($emailto); $smtp->data(); my $boundary = 'frontier'; my $attachBinaryFile = '18560243.pdf'; $smtp->datasend("MIME-Version: 1.0\n"); $smtp->datasend("Content-type: multipart/mixed;\n\tboundary=\"$boundar +y\"\n"); $smtp->datasend("--$boundary\n"); $smtp->datasend("Content-type: text/plain;\n"); $smtp->datasend("\nSome plain text here in the body of the email\n"); $smtp->datasend("\n"); $smtp->datasend("--$boundary\n"); $smtp->datasend("Content-Type: appliaction/pdf; name=\"$attachBinaryFi +le\"\n"); $smtp->datasend("Content-Transfer-Encoding: base64\n"); $smtp->datasend("Content-Disposition: attachment; filename=\"$attachBi +naryFile\"\n"); $smtp->datasend("\n"); my $buf; open(DAT, "/path/18560243.pdf") || die("Could not open binary file!"); binmode(DAT); local $/=undef; while (read(DAT, my $picture, 4096)) { $buf = &encode_base64( $picture ); $smtp->datasend($buf); } close(DAT); $smtp->datasend("\n"); $smtp->datasend("--$boundary\n"); $smtp->dataend(); $smtp->quit; sub date_r { my ($monthday, $mon, $yr, $ time, $hour, $str); my (@lt) = (); @lt = localtime(); $monthday = $lt[3]; $mon = $lt[4]+1; $yr = $lt[5] + 1900; $hour = $lt[2]; $time = sprintf("%02d:%02d:%02d", $hour, $lt[1], $lt[0]); $str = $mon . '/' .$monthday . '/' . $yr . ' ' . $time; return $str; }

        Changed to use a chunk/buffer that is a multiple of 57 bytes, corrected 'appliaction/pdf' and added some extra line endings. Much better to use a module if you can.

        #!perl use strict; use Net::SMTP; use MIME::Base64; my $smtphost = ''; my $username = ''; my $password = ''; my $emailto = ''; my $emailfrom = ''; my $subject = 'Hello world'; my $message = 'Test message'; my $smtp = Net::SMTP->new($smtphost, Debug => 1, Timeout => 5); $smtp->datasend("AUTH LOGIN\n"); $smtp->datasend(encode_base64($username)); $smtp->datasend(encode_base64($password)); #$smtp->auth($username,$password); $smtp->mail($emailfrom); $smtp->to($emailto); $smtp->data(); my $now = date_r(); $smtp->datasend("To: $emailto\n"); $smtp->datasend("From: $emailfrom\n"); $smtp->datasend("Date: $now\n"); $smtp->datasend("Subject: $subject\n"); my $boundary = 'frontier'; my $attachBinaryFile = '18560243.pdf'; $smtp->datasend("MIME-Version: 1.0\n"); #$smtp->datasend("Content-type: multipart/mixed;\n\tboundary=\"$bounda +ry\"\n"); $smtp->datasend("Content-type: multipart/mixed; boundary=\"$boundary\" +\n\n"); $smtp->datasend("--$boundary\n"); $smtp->datasend("Content-type: text/plain;\n"); $smtp->datasend("\nSome plain text here in the body of the email\n"); $smtp->datasend("\n"); $smtp->datasend("--$boundary\n"); #$smtp->datasend("Content-Type: appliaction/pdf; name=\"$attachBinaryF +ile\"\n"); $smtp->datasend("Content-Type: application/pdf; name=\"$attachBinaryFi +le\"\n"); $smtp->datasend("Content-Transfer-Encoding: base64\n"); $smtp->datasend("Content-Disposition: attachment; filename=\"$attachBi +naryFile\"\n"); $smtp->datasend("\n"); my $buf; #open(DAT, "/path/$attachBinaryFile") || die("Could not open binary fi +le!"); open DAT, '<',"/path/$attachBinaryFile" or die "Could not open $attach +BinaryFile : $!"; binmode(DAT); local $/=undef; # while (read(DAT, my $picture, 4096)) { while (read(DAT, my $picture, 4104)) { $buf = &encode_base64( $picture ); $smtp->datasend($buf); } close(DAT); $smtp->datasend("\n"); $smtp->datasend("--$boundary\n"); $smtp->dataend(); $smtp->quit; sub date_r { # my ($monthday, $mon, $yr, $ time, $hour, $str); # my (@lt) = (); # $monthday = $lt[3]; # $mon = $lt[4]+1; # $yr = $lt[5] + 1900; # $hour = $lt[2]; my @lt = localtime(); $lt[4] += 1; $lt[5] += 1900; my $str = sprintf "%02d/%02d/%04d %02d:%02d:%02d",@lt[4,3,5,2,1,0]; return $str; }
        poj

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1211049]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-25 15:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found