Table of Contents

Constructor EmailOptions

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

EmailOptions()

Initializes a new instance of the EmailOptions class.

public EmailOptions()

Examples

EmailOptions options = new EmailOptions();

EmailOptions(string, string, string)

Initializes a new instance of the EmailOptions class.

public EmailOptions(string message, string title, string to)

Parameters

message string

The message.

title string

The title.

to string

The recipient.

Examples

EmailOptions options = new EmailOptions("message", "title", "recipient");