Mike Copeland wrote:
> How do I code the syntax to get the e-mail link at the end of the
> code below to (1) show it's a hyperlink and (2) call the user's e-mail
> client to create and send the e-mail request? I'm able to do this in
> HTML code and file (e.g. href="mailto:..."), but it doesn't work in a
> PHP file. Please advise. TIA
That is an ill-conceived approach as it presupposes the availability of an
e-mail client application. In a decade where Google Mail is widely used,
such a program to be installed *and* properly configured on the client
computer is even more improbable than it was in the previous decade, of
Internet cafés.
In any case, `mailto:' *does* work to that extent in a "PHP file" (you
should think of "PHP files" as scripts, as *computer programs* instead).
But it will never, anywhere, automatically submit the e-mail.
Use a form-mailer instead.
PointedEars
--
When all you know is jQuery, every problem looks $(olvable).