In the aMember e-mail templates, you can use e-mail variables, like {$user.login}. When a new user signs up to my aMember protected website, I would like to receive an e-mail with all the fields, the user entered during signup. Including the additional user profile fields. Does anybody know how to do this? Solution: look at my reply further on in this thread
Found it !! No {$user.my_custom_field} does not work But after some investigating how things are done in the html files with the smarty code, I found out that the custom form variables, that you can define, are placed in an array called $user.data When you want to print one of your custom fields anywhere in an email, you can use the following syntax: My custom field: {lookup arr=$user.data key='my_custom_field'} This works !!! In this example you would have added a field called 'my_custom_field' at aMember CP - Utilities - Add Fields