Page 1 of 1

Subject Macro - Outlook Email

Posted: Tue Feb 10, 2009 9:49 am
by Anonymous User
Hey Mike,

I noticed in the new update that there is now a subject macro in the MS Outlook tab in A1. Can you please explain how to use this? We want our subject to say: Re: >>, Claim No.: >>

Thanks!

Re: Subject Macro - Outlook Email

Posted: Tue Feb 10, 2009 10:25 am
by Anonymous User
The latest version fixes a bug where it was not always placing the applicant (or party #1) name in the RE: and now it does. You can pre-defined your subject macro from tools, system, configure system defaults, general, Email, Subject Macro. Here is an example of the code to pull all claim numbers:

"RE: " + trim(card.first) + " " + trim(card.last) + ", Claim Nos: " + getinjurycode("injury,claimnoall", 1)

Your subject might get awfully long if you include the applicant vs. carrier and claim numbers but it might look something like this:

"RE: " + trim(card.first) + " " + trim(card.last) + " vs. " + trim(injury.i_name) + ", Claim Nos: " + getinjurycode("injury,claimnoall", 1)


Mike

Re: Subject Macro - Outlook Email

Posted: Thu Feb 09, 2012 1:17 pm
by jboyd
Hey Mike,

What would the code look like if we wanted it to be like this:

Applicant v. Employer; Claim #

Thanks!

Re: Subject Macro - Outlook Email

Posted: Thu Feb 09, 2012 1:20 pm
by Admin1
Similar to the above code:

"RE: " + trim(card.first) + " " + trim(card.last) + " vs. " + trim(injury.i_name) + ", Claim Nos: " + getinjurycode("injury,claimnoall", 1)

Try the following:

trim(card.first) + " " + trim(card.last) + " v. " + trim(injury.e_name) + ", Claim Nos: " + getinjurycode("injury,claimnoall", 1)

Re: Subject Macro - Outlook Email

Posted: Wed Feb 22, 2012 8:49 am
by jboyd
Hey Mike,

How can we make our subject macro say:

Applicant v. Defendant (Claim #)

Thanks,
Jenn

Re: Subject Macro - Outlook Email

Posted: Wed Feb 22, 2012 11:36 am
by Admin1
Try the following (I'm assuming you mean the employer is the defendant):

trim(card.first) + " " + trim(card.last) + " v. " + trim(injury.e_name) + "(" + getinjurycode("injury,claimnoall", 1) + ")"

Mike

Re: Subject Macro - Outlook Email

Posted: Wed Feb 22, 2012 1:05 pm
by jboyd
Perfect! Thank you!!