Kernel::System::SMSTemplateGenerator

NAME

Kernel::System::SMSTemplateGenerator – template generator functions for Short Message Service templates

DESCRIPTION

All Short Message Service template functions.

PUBLIC INTERFACE

SMSTemplate()

Generate template for Short Message Service text.

    my $SMSTemplate = $SMSTemplateGeneratorObject->SMSTemplate(
        SMSTemplateID => 123,
        TicketID      => 123,                  # Optional
        Data          => $ArticleHashRef,      # Optional
        UserID        => 123,
    );

Returns:

    $SMSTemplate = 'Some text';
Scroll to Top