From 56bea1719337cda148c7323d95e57115a34ff4c6 Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Mon, 23 Feb 2004 12:35:33 +0000 Subject: mail messages are now split in four files, header-lang, mail-lang.txt, mail-lang.html and mail-images (that last one common to all languages) so plain text and multipart html mail messages can be built while keeping occuped size in package at its minimum. See README.mails --- README.mails | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.mails (limited to 'README.mails') diff --git a/README.mails b/README.mails new file mode 100644 index 0000000..a713dd4 --- /dev/null +++ b/README.mails @@ -0,0 +1,24 @@ +* Text only mails are created like this: + +cat mail/header-$lang > tmpfile +cat mail/mail-$lang.txt >> tmpfile + +* text+html+images mails are created like this: + +cat mail/header-$lang > tmpfile +cat < EOF >> tmpfile +Content-Type: multipart/related; type="multipart/alternative"; + boundary="=-tThpx1YEZqL4gn53WjQ1" + +--=-tThpx1YEZqL4gn53WjQ1 +Content-Type: multipart/alternative; boundary="=-aFPGjTr5jUHhXPWxbLcT" + +--=-aFPGjTr5jUHhXPWxbLcT +EOF +cat mail/mail-$lang.txt >> tmpfile +cat mail/mail-$lang.html >> tmpfile +cat mail/mail-images >> tmpfile + + + + -- cgit v1.2.1