I need @mailsend to send an email based on the answer to a question ( field ). The field is site in my case? I have a button I want the user to click on.
If site=‘FL’
or if site=‘TN’
or if site=‘KY’
@mailsend…
I need @mailsend to send an email based on the answer to a question ( field ). The field is site in my case? I have a button I want the user to click on.
If site=‘FL’
or if site=‘TN’
or if site=‘KY’
@mailsend…
Subject: @If(Site = “FL” : “KY” : “TN”; @MailSend(…); “”)
Subject: @mailsend question
Hi,
Try this
FIELD site := site;
@IF((site = “FL” | site = “TN” | site=“KY”);@mailsend(send to all);“”);
HTH
Keshava