Okay,
I have this really nifty class that will let me attach files to mail. It basically beefs up the mail() function. But, I'm not sure how to actually use it. Here's a section of the file with this class:
// usage
$mailfile = new CMailFile($subject,$sendto,$replyto,$message,$filename,$mimetype);
$mailfile->sendfile();
Is that it? How do I actually call this thing to do its thing and send my mail?
Thanks!
Jeof