Hi karmine,
Not directly in the Dynamic Subject box but you can create a combined value in the OnSubmit Before box. There are several examples here if you search on dynmaic subject.
Bob
Not directly in the Dynamic Subject box but you can create a combined value in the OnSubmit Before box. There are several examples here if you search on dynmaic subject.
Bob
I tried this, but does not work....
http://chronoengine.com/forums.html?cont=posts&p=42937#p42937
I have a dynamic subject -->ex --> field_1
and i have insert the code in "On Submit code - before sending email:"...
<?php
$totalefatt = JRequest::getVar('totalefatt', '', 'post');
$field_1 = JRequest::getVar('field_1', '', 'post');
$subject = $totalefatt.'_'.$field_1;
JRequest::setVar('subject', $subject);
?>
But the subject is ever a content of field_1 ...
Any idea?
http://chronoengine.com/forums.html?cont=posts&p=42937#p42937
I have a dynamic subject -->ex --> field_1
and i have insert the code in "On Submit code - before sending email:"...
<?php
$totalefatt = JRequest::getVar('totalefatt', '', 'post');
$field_1 = JRequest::getVar('field_1', '', 'post');
$subject = $totalefatt.'_'.$field_1;
JRequest::setVar('subject', $subject);
?>
But the subject is ever a content of field_1 ...
Any idea?
This topic is locked and no more replies can be posted.