and what I need is the european format of 13-05-1965. I've selected that in the global settings and it shows that when the fields are filled out in the form, but it doesn't translate like that when I use the field name in the email - here: [cb_geburtsdatum]Geburtsdatum 1965-05-13
and I'd like to add more space between the individual items, as my client claims he can hardly separate them.Auto|*|PC|*|Internet|*|Handy
Please Log in or Create an account to join the conversation.
[FIELDNAME] always outputs raw field value. You'll need to use [cb:userfield field="cb_geburtsdatum" /] for it to be formatted.and what I need is the european format of 13-05-1965. I've selected that in the global settings and it shows that when the fields are filled out in the form, but it doesn't translate like that when I use the field name in the email - here: [cb_geburtsdatum]
It's also being substituted as raw value. Using [cb:userfield field="FIELDNAME" /] will resolve this and display it delimitered as you've configured it to within the fields configuration in CB > Field Management.and I'd like to add more space between the individual items, as my client claims he can hardly separate them.
Query field isn't needed for this. You could use [name] andIn addition, the email of the addressee is identified using a query field, which works fine. However, I would also like to include the name of the person to whom the email address belongs to, in the email content, but I've no idea how to do that. Presumably with a nother query, but I am an imbecile when it comes to this kind of thing. Can you help me with this too?
Please Log in or Create an account to join the conversation.
SELECT u.`name` FROM `#__users` AS u LEFT JOIN `#__comprofiler` AS ue ON u.`id` = ue.`user_id` WHERE ue.`cb_pin` = '[cb_pin]'
Please Log in or Create an account to join the conversation.
Maybe wrong field name? If not done so please upgrade to CB 1.8 as we've made some further improvements to substitution API that maybe able to help resolve your issue. It could also be a permissions problem; ensure the field is on a public and published tab. Also ensure the field is set to display on profile.So I added the field in the email - Ansprechpartner: [cb_mypartner] - and all the shows up is the field. That is, [cb_mypartner] and not the name of the person. I also tried : [cb:userfield field="cb_mypartner" /] which just provides an empty field in the email. I've checked that everything is spelt correctly.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.