I have a Webform on Drupal 7 and I am using it to email the administrator whenever an end user submits an entry on this form.
In the email template, I have defined a custom template and I am sending the data using
%email_values
token.
However, I also want to send the value of a particular field on this form but not its label.
So I tried using %email[key]
where key is the key of that field.
But this sends the label of the field as well as its value.
How can I avoid sending the label data in the email?
Well, this link solves the problem:
Drupal - Tokens for Webform Component Values
https://drupal.org/node/1010648
I used
%values[key]
to get submitted values.