Data Connections Email

R

rodchar

hey all,
in the data connections email setup, is there a way to concatenate literal
text with a field?

"The new customer is : " + customerName

thanks,
rodchar
 
S

Shiva (GGK Tech)

Hi,

You can directly use as Ramana said above. If you want to concatenation in
code then you have to use concat function. It will concatenation of two
string: first one is hard code string and other one is field value.

Concat(“The new customer is†+ “ : “ + field1);

Hope this help you.
 
Top