C# 클래스 MvcContrib.Services.EmailMetadata

Base class for email models. Derived classes will provide specific values to substitute placeholders in concrete emails. If nothing to substitute, this class can be used directly.
파일 보기 프로젝트 열기: atomicobject/mvccontrib 1 사용 예제들

공개 메소드들

메소드 설명
EmailMetadata ( ) : System.Collections.Generic

Initializes an empty instance of EmailMetadata.

EmailMetadata ( System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to ) : System.Collections.Generic

Initializes a new instance of the EmailMetadata class by using the specified "from" and "to" email addresses.

EmailMetadata ( string from, string to ) : System.Collections.Generic

Initializes a new instance of the EmailMetadata class by using the specified "from" and "to" email addresses.

메소드 상세

EmailMetadata() 공개 메소드

Initializes an empty instance of EmailMetadata.
public EmailMetadata ( ) : System.Collections.Generic
리턴 System.Collections.Generic

EmailMetadata() 공개 메소드

Initializes a new instance of the EmailMetadata class by using the specified "from" and "to" email addresses.
public EmailMetadata ( System.Net.Mail.MailAddress from, System.Net.Mail.MailAddress to ) : System.Collections.Generic
from System.Net.Mail.MailAddress A mail address of the sender.
to System.Net.Mail.MailAddress A mail address of the recipient.
리턴 System.Collections.Generic

EmailMetadata() 공개 메소드

Initializes a new instance of the EmailMetadata class by using the specified "from" and "to" email addresses.
public EmailMetadata ( string from, string to ) : System.Collections.Generic
from string A string that contains email address of the sender.
to string A string that contains email address of the recipient.
리턴 System.Collections.Generic