Edit

Share via


Utilities.BeginComposeEmail Method

Definition

Overloads

BeginComposeEmail(Contact, String, AsyncCallback, Object)

Launches a new Outlook message window pre-populated with the contact email address and subject string passed in the first two arguments of this method.

BeginComposeEmail(DistributionGroup, String, AsyncCallback, Object)

Launches a new Outlook message window pre-populated with the specified distribution group and subject string passed in the first two arguments of this method.

BeginComposeEmail(IEnumerable<Contact>, IEnumerable<DistributionGroup>, String, AsyncCallback, Object)

Opens an email window in order to compose new email

BeginComposeEmail(Contact, String, AsyncCallback, Object)

Launches a new Outlook message window pre-populated with the contact email address and subject string passed in the first two arguments of this method.

public:
 IAsyncResult ^ BeginComposeEmail(Microsoft::Lync::Model::Contact ^ to, System::String ^ subject, AsyncCallback ^ utilitiesCallback, System::Object ^ state);
public IAsyncResult BeginComposeEmail (Microsoft.Lync.Model.Contact to, string subject, AsyncCallback utilitiesCallback, object state);
member this.BeginComposeEmail : Microsoft.Lync.Model.Contact * string * AsyncCallback * obj -> IAsyncResult
Public Function BeginComposeEmail (to As Contact, subject As String, utilitiesCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

to
Contact
subject
String
utilitiesCallback
AsyncCallback
state
Object

Returns

System.IAsyncResult

Applies to

BeginComposeEmail(DistributionGroup, String, AsyncCallback, Object)

Launches a new Outlook message window pre-populated with the specified distribution group and subject string passed in the first two arguments of this method.

public:
 IAsyncResult ^ BeginComposeEmail(Microsoft::Lync::Model::Group::DistributionGroup ^ to, System::String ^ subject, AsyncCallback ^ utilitiesCallback, System::Object ^ state);
public IAsyncResult BeginComposeEmail (Microsoft.Lync.Model.Group.DistributionGroup to, string subject, AsyncCallback utilitiesCallback, object state);
member this.BeginComposeEmail : Microsoft.Lync.Model.Group.DistributionGroup * string * AsyncCallback * obj -> IAsyncResult
Public Function BeginComposeEmail (to As DistributionGroup, subject As String, utilitiesCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

subject
String
utilitiesCallback
AsyncCallback
state
Object

Returns

System.IAsyncResult

Applies to

BeginComposeEmail(IEnumerable<Contact>, IEnumerable<DistributionGroup>, String, AsyncCallback, Object)

Opens an email window in order to compose new email

public:
 IAsyncResult ^ BeginComposeEmail(System::Collections::Generic::IEnumerable<Microsoft::Lync::Model::Contact ^> ^ toContacts, System::Collections::Generic::IEnumerable<Microsoft::Lync::Model::Group::DistributionGroup ^> ^ toDGs, System::String ^ subject, AsyncCallback ^ utilitiesCallback, System::Object ^ state);
public IAsyncResult BeginComposeEmail (System.Collections.Generic.IEnumerable<Microsoft.Lync.Model.Contact> toContacts, System.Collections.Generic.IEnumerable<Microsoft.Lync.Model.Group.DistributionGroup> toDGs, string subject, AsyncCallback utilitiesCallback, object state);
member this.BeginComposeEmail : seq<Microsoft.Lync.Model.Contact> * seq<Microsoft.Lync.Model.Group.DistributionGroup> * string * AsyncCallback * obj -> IAsyncResult
Public Function BeginComposeEmail (toContacts As IEnumerable(Of Contact), toDGs As IEnumerable(Of DistributionGroup), subject As String, utilitiesCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

toContacts
IEnumerable<Contact>
subject
String
utilitiesCallback
AsyncCallback
state
Object

Returns

System.IAsyncResult

Applies to