Scripts/DSC1/Mod4/4.Config_SMTP.ps1

configuration SMTP {

    Node HTTPComputers {

        WindowsFeature SMTP{
            Name = 'SMTP-Server'
            Ensure = 'Present'
        }
    }
}

SMTP -OutputPath C:\DSC\HTTP