Welcome Guest, Not a member yet? Register   Sign In
Facing issue sending email and input of user
#3

[eluser]CroNiX[/eluser]
For one thing, this line:
Code:
$this->email->to('$email');

You have $email in single quotes, which makes it a literal "$email" string instead of the contents of the variable. Remove the quotes.

Code:
$email = '[email protected]';
echo '$email';
//outputs: $email, not [email protected]


Messages In This Thread
Facing issue sending email and input of user - by El Forum - 01-19-2014, 02:39 AM
Facing issue sending email and input of user - by El Forum - 01-19-2014, 05:39 AM
Facing issue sending email and input of user - by El Forum - 01-19-2014, 12:16 PM



Theme © iAndrew 2016 - Forum software by © MyBB