I have a question regarding attachments. Will you be able to answer it to me. Thanks
How can you send attachments to email. I used sendmail to send emails. I was trying to use MIME::Lite to send attachments but it is giving me an error when i use the attach(). | [reply] |
What's the error?
Also, see Re: Mail attachments and its containing thread, and see if that helps.
Philosophy can be made out of anything. Or less -- Jerry A. Fodor
| [reply] |
my question is that in type how would you know what the attachment file is. Meaning i have a attaachment button that attaches a file then i click send email.
SO i am confused about how to give the type. Also, in the path can i give the whole path plus the filename. Or do i need to parse it.
# Create a new single-part message, to send a GIF file:
$msg = new MIME::Lite
From =>'me@myhost.com',
To =>'you@yourhost.com',
Cc =>'some@other.com, some@more.com',
Subject =>'Helloooooo, nurse!',
Type =>'image/gif',
Encoding =>'base64',
Path =>'hellonurse.gif';
# Send in the "best" way
# (the default is to use "sendmail"):
$msg->send;
I am sorry i maybe asking very basic quesitons. Its just I am learning perl and i am just a beginner.
| [reply] |