Open the menu
    ```html

    Newsletter: Scheduling Administration

    In this interface, it is possible to register, edit, and remove schedules

    The schedule is responsible for sending, at predefined intervals, the emails of a certain template. For this, the contents of the categories specified in the template are acquired, which are processed by the model, creating the email to be sent.

    Features

    • It is an administration interface

    Screens

    Scheduling Administration

    Data

    schedule

    • Model(identifier) : The model that will be used by the schedule.
    • Status(integer) : The status of the schedule, which can be "Enabled" or "Disabled".
    • Type(integer) : The frequency of the newsletter sending, which can be "Daily", "Weekly", or "Monthly".
    • Next Send(date and time) : The scheduled date and time for sending the newsletter.
    • Last Processing(date and time) : The date and time of the last processing, not necessarily indicating that the newsletter has been sent.

    template

    • Name(string) : Display name of the template.
    • Last Modification(date and time)
    • Views in the last 30 days(string)

    Links

    Permissions

    • Administer: Allows managing the models, categories, schedules, and subscriptions of the service instance.

    Actions

    • Delete Schedule: Permanently removes the selected schedules.
    • Duplicate
    ```