Convert e-mailadress to clickable hotspot

Hi!I´ve got a web-based bookingform where the user types his e-mailadress in a textfield. The administrators of that booking uses his Notesclient to read the form. How can I convert an e-mailadress from a webform to a clickable mailto-adress in the Notesclient?

Thanks in advance!

/Sune

Subject: Convert e-mailadress to clickable hotspot

You simply must put a “mailto” before the mailaddress, that’s all. E.g: “mailto:myuser@mydomain.com” instead of “myuser@mydomain.com”.

Regards, Michael

Subject: Convert e-mailadress to clickable hotspot

I would create a button on the form visible only to Notes Clients, or an action hotspot around a computed for display version of the field, once again visible only to Notes Clients.Put in something like this:

vAddress:= EmailFieldName; (whatever it is)

@Command([MailComposeMemo]);

@Command([EditInsertText];vAddress)

Subject: RE: Convert e-mailadress to clickable hotspot

Made a hotspot button and used your solution - works great.

Thanks!

/Sune