diff --git a/Kernel/System/Ticket/Event/NotificationEvent.pm b/Kernel/System/Ticket/Event/NotificationEvent.pm
index f83387e..2ce16ae 100644
--- a/Kernel/System/Ticket/Event/NotificationEvent.pm
+++ b/Kernel/System/Ticket/Event/NotificationEvent.pm
@@ -380,8 +380,29 @@ sub _SendCustomerNotification {
     $Notification{Body} =~ s/<OTRS_TICKET_ID>/$Param{TicketID}/gi;
     $Notification{Body} =~ s/<OTRS_TICKET_NUMBER>/$Article{TicketNumber}/gi;
 
+
+
     # ticket data
     my %Ticket = $Self->{TicketObject}->TicketGet( TicketID => $Param{TicketID} );
+
+    my $EncodeObject = Kernel::System::Encode->new(
+        ConfigObject => $Self->{ConfigObject},
+    );
+
+    my $LanguageObject = Kernel::Language->new(
+        UserLanguage => $Recipient{Language},
+       ConfigObject => $Self->{ConfigObject},
+       LogObject => $Self->{LogObject},
+       MainObject => $Self->{MainObject},
+       EncodeObject => $EncodeObject,
+    );
+
+    my $state = $LanguageObject->Get($Ticket{State});
+
+    $Notification{Body}    =~ s/<OTRS_TICKET_State>/$state/gi;
+    $Notification{Subject} =~ s/<OTRS_TICKET_State>/$state/gi;
+
+
     for ( keys %Ticket ) {
         next if !defined $Ticket{$_};
         $Notification{Body}    =~ s/<OTRS_TICKET_$_>/$Ticket{$_}/gi;
