RE: [Zope-dev] Easy DTML question
I appreciate this response, but it unfortunately it didn't work. Anyone have any other ideas? Thanks, John
-----Original Message----- From: Jim Penny [mailto:jpenny@universal-fasteners.com] Sent: Wednesday, November 17, 1999 7:45 PM To: John Fohrman Subject: Re: [Zope-dev] Easy DTML question
On Wed, Nov 17, 1999 at 07:27:26PM -0500, John Fohrman wrote:
Hi All --
Could someone please tell me how to concatenate a string using DTML in the following example? I need to put "smtp:" in front of the email variable for sendmail to work.
<!--#sendmail mailhost=MailHost mailfrom=sender mailto=email -->
try <!--#sendmail mailhost=MailHost mailfrom=sender mailto="'smtp:'+email" -->
When to use a double quote and when not always gives me a headache, I usually try the " version first.
Thanks!
John Fohrman wrote:
I appreciate this response, but it unfortunately it didn't work. Anyone have any other ideas?
In what way did it not work ? Maybe it is _not_ an "Easy DTML question" but instead a "Tricky Sendmail Issue" ?
try <!--#sendmail mailhost=MailHost mailfrom=sender mailto="'smtp:'+email" -->
does it work when you use a fixed string, like <!--#sendmail mailhost=MailHost mailfrom=sender mailto="'smtp:someone@somewhere.net'" --> ----------------- Hannu
participants (2)
-
Hannu Krosing -
John Fohrman