Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hi

i have a code now that sends email to a bunch of guys all right. Now, i would like to send attachments (txt files) in the email.

A few things:

i used this snippet that i got from another node in perl monks:

open CSVFH, "< $attach_file_1";

while (<CSVFH>) { chomp; $smtp->datasend("$_\n"); }

close CSVFH;

$smtp->datasend("Content-Type: application/text; name= $attach_file_2");

$smtp->datasend("Content-Disposition: attachment; filename=\"$attach_file_2\" \n");

$smtp->datasend("\n");

but this sends the files that i want to attach as the body of the email and NOT as actual attachments

And, i cannot download the MIME:Lite module. I HAVE to use SMTP only!

can someone help me achieve this?

Thanks

In reply to Sending attachments in emails using SMTP by biswanath_c

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (6)
As of 2024-03-28 23:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found