18 Aug
2001
18 Aug
'01
8:06 p.m.
Vincenzo Di Somma writes:
How can I pass the smtphost attribute as a variable in the dtml-sendmail tag ?
Es: <dtml-sendmail smtphost="my_param"> You cannot do that.
But you can use a mailhost variable. Its id is resolved via the DTML namespace. Thus, you can have <dtml-let currentMailhost=...your_variable...> <dtml-sendmail mailhost=currentMailhost> .... </dtml-sendmail> </dtml-let> Dieter