Hnxml Standard
    Preparing search index...

    Type Alias Sendemail

    Task to have an email sent to a specified address with a defined subject. This one requires an email

    This is mostly useful for detecting sent medical records from a medical database. Medical records have the subject line: "MedicalRecord - Lastname_Firstname"

    folder on the server ID "jmail" that contains a mail server.

    <goal type="sendemail" mailServer="jmail" recipient="mailuser123" subject="Email Subject!"/>
    
    type Sendemail = {
        mailServer: string;
        recipient: string;
        subject: string;
        type: "sendemail";
    }
    Index

    Properties

    mailServer: string
    recipient: string
    subject: string
    type: "sendemail"