Skip to main content
Participating Frequently
December 20, 2011
Question

URL link in email

  • December 20, 2011
  • 1 reply
  • 395 views

I have a small problem that is starting to bug me now.  I am trying to send out an automated email to clients and in that email put a link back to the site but whenever i click on the link it takes me to the local host pages.  This is the code i have:-

 

                                                   "<a> href='http://'www.thenurseryjobsite.com>Login</a> to theNurseryJobSite";

                    "From: thenurseryjobsite.com";

$headers =           "From: thenurseryjobsite.com<enquiries@thenurseryjobsite.com>\r\n" .

                             

Any ideas - i know i am probably doing something really stupid but have spent ages changing things around.

This topic has been closed for replies.

1 reply

December 20, 2011

Your anchor tag is not properly formatted. Try this:

<a href=\"http://thenurseryjobsite.com\">Login</a>

best,

Shocker