sending mimemail drupal with image attachment

I was looking a way to send email with attachments in drupal, to create a simple module which sends email to users with attached images. I try to do it with drupal_mail() function. but results were no so great! so when finding alternative, I found a module called mimemail module which allow send email attachments with less pain. even though i sounds like pretty straight-forward task. I have dig

p1

fixing for error - postdrop: warning: unable to look up public/pickup: No such file or directory.

I installed postfix and got this error: postdrop: warning: unable to look up public/pickup: No such file or directory. Turns out that sendmail was previously installed and that was messing things up. I had to stop sendmail and make the appropriate directory and restart postfix. Specifically: mkfifo /var/spool/postfix/public/pickup ps aux | grep mail kill sudo /etc/init.d/postfix restart Test

p1