Class EmailIngestReceiveFileDetails
Received files via Email to Dropbox.
Inherited Members
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class EmailIngestReceiveFileDetails
Constructors
View SourceEmailIngestReceiveFileDetails(string, IEnumerable<string>, string, string, string)
Initializes a new instance of the EmailIngestReceiveFileDetails class.
Declaration
public EmailIngestReceiveFileDetails(string inboxName, IEnumerable<string> attachmentNames, string subject = null, string fromName = null, string fromEmail = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | inboxName | Inbox name. |
| IEnumerable<string> | attachmentNames | Submitted file names. |
| string | subject | Subject of the email. |
| string | fromName | The name as provided by the submitter. |
| string | fromEmail | The email as provided by the submitter. |
Properties
View SourceAttachmentNames
Submitted file names.
Declaration
public IList<string> AttachmentNames { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
FromEmail
The email as provided by the submitter.
Declaration
public string FromEmail { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
FromName
The name as provided by the submitter.
Declaration
public string FromName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
InboxName
Inbox name.
Declaration
public string InboxName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Subject
Subject of the email.
Declaration
public string Subject { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |