1) Open a new email
2) Select from a list of three email addresses for the To: line
3) Insert a subject which changes with the name of the job
4) Take a number provided and multiply it by .20, then add the result to the original number and insert both figures into the email body -- something like:
The estimated folios for this job are {folios}. Please ensure you don't type more than {folios X .20 + folios} folios without first letting me know.
5) Leave the email open for further editing.
From looking around here and in Poco's scripts I've come up with the barebones of the code I think is needed, but I'm stuck on how to use variables and get this working.
- Code: Select all
CreateMessage %m
InputBox $userdata1 "Choose recipient...%var%" "email addy1|email addy2|email addy3"[/i] (Addys scrubbed for posting here)
[i]InputBox $userdata2 "Subject (type over):" "CASE NAME"
InputBox $userdata3 "Enter estimated folios (type over):" 50
AppendBody $msg $userdata3
Set $userdata3 #a
Set #b .20
Multiply #a #b
EditMessage %m
exit
Any help would be wonderful, thanks.
/Mez