AkaneMail.Mail.Mail C# (CSharp) Method

Mail() public method

public Mail ( string address, string header, string subject, string body, string attach, string date, string size, string uidl, bool notReadYet, string convert, string cc, string bcc, string priority ) : System
address string
header string
subject string
body string
attach string
date string
size string
uidl string
notReadYet bool
convert string
cc string
bcc string
priority string
return System
        public Mail(string address, string header, string subject, string body, string attach, string date, string size, string uidl, bool notReadYet, string convert, string cc, string bcc, string priority)
        {
            this.address = address;
            this.header = header;
            this.subject = subject;
            this.body = body;
            this.attach = attach;
            this.date = date;
            this.size = size;
            this.uidl = uidl;
            this.notReadYet = notReadYet;
            this.cc = cc;
            this.bcc = bcc;
            this.priority = priority;
            this.convert = convert;
        }