Class Email
Email info.
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public sealed class Email : IMessage<Email>, IEquatable<Email>, IDeepCloneable<Email>, IBufferMessage, IMessage
Constructors
Email()
Declaration
public Email()
Email(Email)
Declaration
public Email(Email other)
Parameters
| Type | Name | Description |
|---|---|---|
| other |
Properties
Bcc
A list of 'bcc' addresses.
Declaration
public RepeatedField<string> Bcc { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<string> |
BounceAddress
The envelope from address. https://en.wikipedia.org/wiki/Bounce_address
Declaration
public string BounceAddress { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Cc
A list of 'cc' addresses.
Declaration
public RepeatedField<string> Cc { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<string> |
From
The 'from' address.
Declaration
public string From { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MailId
The mail (or message) ID.
Declaration
public string MailId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ReplyTo
The 'reply to' address.
Declaration
public string ReplyTo { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Subject
The subject line(s) of the email.
Declaration
public RepeatedField<string> Subject { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<string> |
To
A list of 'to' addresses.
Declaration
public RepeatedField<string> To { get; }
Property Value
| Type | Description |
|---|---|
| RepeatedField<string> |