Forums

Get Username to Email

upazupa 18 Jan, 2012
Hello,

I'm having some problems adding the username to the email form.
Here is my need:

OnSubmit Action:
Send an email with the username included, but this field should be not inserted by the user because the user is logged in.

Thanks for any help
:)
GreyHead 19 Jan, 2012
Hi upazupa,

Add a custom code action to the On Submit event with code like this:
<?php
$user =& JFactory::getUser();
$form->data['username'] =& $user->username;
?>
Then put {username} in the Email template.

Bob
This topic is locked and no more replies can be posted.