SamLovesWine
SamLovesWine

Reputation: 1

How do I attach a file using qmail on a Solaris server?

Specifically, I would like to attach multiple files to an outgoing email using tcl and qmail on a solaris server.

Upvotes: 0

Views: 98

Answers (1)

Anshul
Anshul

Reputation: 1446

qmail is an MTA so dont expect qmail to attach something by itself. Also attaching an attachment in the mail body has to be as per the rfc. I know of php which has mime_parser functions which automatically creates the mime body for attachment mails.

If you want you can have your own function or may be some open source code, i know of altermime which can add remove attachments, disclaimers from the mail body.

Make sure to have this code place before qmail-queue is called.

Upvotes: 0

Related Questions