Copy link to clipboard
Copied
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='https://www.karelteknikservisi.com/>Login</a> to theNurseryJobSite";
"From: thenurseryjobsite.com";
$headers = "From: thenurseryjobsite.com<noreply@karelteknikservisi.com/>\r\n" .
Any ideas - i know i am probably doing something really stupid but have spent ages changing things around.
If that's the exact code you are using then it's incorrect.
1. You have closed the anchor tag before the link by adding an extra angle bracket after the opening anchor tag <a>, remove the >
2 You need to add ' to enclose the link, after - .com/'
Copy link to clipboard
Copied
If that's the exact code you are using then it's incorrect.
1. You have closed the anchor tag before the link by adding an extra angle bracket after the opening anchor tag <a>, remove the >
2 You need to add ' to enclose the link, after - .com/'