Application "Feedback Application"
{
Page "Submit feedback"
{
Form  Feedback_Form
{  
    Sender
    (
        type  =  email
    )

    Subject

    Category
    (
        type  =  radiobuttons
        values  { General,   Usability,   Bug Report,   Feature Request }
    )

    Comments
    (
        type  =  textarea
    )

    on success
    {
        sendmail
        [
            To            :  this.Sender
            From        :  "support@zohocreator.com"
            Subject    :  "Thanks!"
            Message :  "Received your feedback with comments: " +
                                this.Comments + " We will work on it, thanks."
        ]
    }
}

}

Page "View feedback"
{
        table 
"Feedback List"
        {
            show  all  rows  from  Feedback_Form
           
            filters
            (
                Category
            )
        }
}
}