Send mail on a particular Lifecycle state change

I agree with Animesh. The OOTB email template he links to is the correct template for handling this. To expand on what he said about velocity template scripting, you can check out this post that explains how you can use if/else logic in the email subject to control when the email is sent.

In your case, you would probably use the following velocity script in the subject.

#if($oldState == 'T1' && $newState == 'A')Lifecycle state has changed for your employee#{else}#stop#end