| View previous topic :: View next topic |
| Author |
Message |
mtate Just popping in
Joined: 20 Sep 2007 Posts: 2
|
| Posted: Wed May 21, 2008 11:44 am Post subject: Mobile numbers in emailsignature |
|
|
On a person profile, under the telephone tab in AD there is a mobile number entry. We have this filled in, and if applicable we want this to show in a persons signature.
It used to be possible to do this with an IF statement, however this is no longer supported. Is there anyway to use this mobile number field?
Thanks |
|
| Back to top |
|
 |
Jesper Frier Certified Professional


Joined: 09 Sep 2006 Posts: 1940 Location: Stoevring, Denmark
|
| Posted: Wed May 21, 2008 11:50 am Post subject: Insert conditional text |
|
|
We support conditional fields like this:
| Code: | | {$$NULL(Mobile_number)$$VALUE(Mobile: ((Mobile_number))<BR>)$$} |
Is this what you are referring to? Then simply click the 'Insert conditional text' button in your Cockpit design view. _________________ </Jesper> | Test Email Signature | Showcase |  |
|
| Back to top |
|
 |
mtate Just popping in
Joined: 20 Sep 2007 Posts: 2
|
| Posted: Wed May 21, 2008 1:33 pm Post subject: |
|
|
If we simply want the number to appear with Mobile: am I right in thinking the code should be
{$$NULL(Mobile_number)$$VALUE ((Mobile_number)) $$}
I can't get this to work without erroring.
Thanks |
|
| Back to top |
|
 |
Jesper Frier Certified Professional


Joined: 09 Sep 2006 Posts: 1940 Location: Stoevring, Denmark
|
| Posted: Wed May 21, 2008 1:41 pm Post subject: Insert conditional text |
|
|
This is correct:
| Code: | | {$$NULL(Mobile_number)$$VALUE(((Mobile_number))<BR>)$$} |
If you remove '<BR>' then a blank line is left. Then use this code: (You forgot two brackets)
| Code: | | {$$NULL(Mobile_number)$$VALUE(((Mobile_number)))$$} |
Paste in Code View. _________________ </Jesper> | Test Email Signature | Showcase |  |
|
| Back to top |
|
 |
|