I have not checked yet to see if this a problem with all email services but GMail is giving me an invalid Sign in link when sent from PHPRunner.
In my Events After Record added I have a line in my email script like this:
$msg.="http://www.mywebsite.com/login.php?&username=".$traineremailname.""'>http://www.mywebsite.com/login.php?&username=".$traineremailname."";
the value $trainermailname comes from this -- $traineremailname=$data["firstname"]." ".$data["lastname"];
So what I should have in my outgoing email is "http://www.mywebsite.com/login.php&username=Sarah'>http://www.mywebsite.com/login.php&username=Sarah Harrison"
The User name login must be with the User's first name then a space and their last name to be valid.
[size="3"]However, in Gmail the link shows up transformed into a live link as intended. But the linkage stops after the First name.
"http://www.mywebsite.com/login.php&username=Sarah'>http://www.mywebsite.com/login.php&username=Sarah"[/size]
The link WILL generate in full if use this:
$traineremailname=$data["firstname"]."_".$data["lastname"];
But I don't want to change the Logins to force Users now to put an underline _ between their first and last names for valid Logins.
I have tried wrapping up everything in an <a href ="http://www. link but GMail is not generating the Last name inside the link.
Does anyone have suggestions?
<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=22123&image=1&table=forumtopics' class='bbc_emoticon' alt=':huh:' />