Subject Macro - Outlook Email

Closed Forum - older posts now retired. This forum is read only. You can search and view posts in this forum but you cannot reply or create new posts in this forum.
Post Reply
Anonymous User

Subject Macro - Outlook Email

#1

Post by Anonymous User » Tue Feb 10, 2009 9:49 am

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!

Anonymous User

Re: Subject Macro - Outlook Email

#2

Post by Anonymous User » Tue Feb 10, 2009 10:25 am

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

jboyd
Posts: 6
Joined: Thu Dec 09, 2010 9:18 am

Re: Subject Macro - Outlook Email

#3

Post by jboyd » Thu Feb 09, 2012 1:17 pm

Hey Mike,

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

Applicant v. Employer; Claim #

Thanks!

User avatar
Admin1
Site Admin
Posts: 222
Joined: Tue Jun 06, 2017 12:03 pm

Re: Subject Macro - Outlook Email

#4

Post by Admin1 » Thu Feb 09, 2012 1:20 pm

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)

jboyd
Posts: 6
Joined: Thu Dec 09, 2010 9:18 am

Re: Subject Macro - Outlook Email

#5

Post by jboyd » Wed Feb 22, 2012 8:49 am

Hey Mike,

How can we make our subject macro say:

Applicant v. Defendant (Claim #)

Thanks,
Jenn

User avatar
Admin1
Site Admin
Posts: 222
Joined: Tue Jun 06, 2017 12:03 pm

Re: Subject Macro - Outlook Email

#6

Post by Admin1 » Wed Feb 22, 2012 11:36 am

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

jboyd
Posts: 6
Joined: Thu Dec 09, 2010 9:18 am

Re: Subject Macro - Outlook Email

#7

Post by jboyd » Wed Feb 22, 2012 1:05 pm

Perfect! Thank you!!

Post Reply