Autor: Gilbert W Data: A: exim-users Assumpte: [exim] autoreply text line break
Hi all,
i'm having problem to display "\r\n" or "\n" properly in the content of
email
here's my autoreply transport
--------------------------------------------
autoreply:
debug_print = "T: autoreply for $local_part@$domain"
driver = autoreply
to = ${sender_address}
from = "${local_part}@${domain}"
subject = Re: $h_subject:
text = ${lookup mysql { \
SELECT autoreply_txt \
FROM USER_TABLE \
WHERE id='${quote_mysql:$local_part}@${quote_mysql:$domain}' \
}{$value}}
since "autoreply_txt" is fetched from a HTML form then store the line break
in Database as "\r\n",
it shows up as "line1\r\n\line2\r\n ..."
is there any way to turn these escape characters into line breaks?