Re: [exim] Append an HTML to outgoing Email

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Matt
Datum:  
To: exim
Betreff: Re: [exim] Append an HTML to outgoing Email
Usman Ghani wrote:

> No one here can tell me straight forward steps or some software utility
> pls?



The utility is alterMIME. Use it with the pipe transport to a script. You
will literally need a script that does:

cat > tmpfile
altermime --input=tmpfile --disclaimer=/path/to/textfile
sendmail -f$sender $recipient < tmpfile

Read the documentation, both for the pipe transport and alterMIME. You
have to do the work yourself. The advice has already been given.

Matt