You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<paramname="cancellationToken">To be added.</param>
1745
-
<summary>To be added.</summary>
1746
-
<returns>To be added.</returns>
1747
-
<remarks>To be added.</remarks>
1749
+
<paramname="from">The address information of the message sender.</param>
1750
+
<paramname="recipients">The addresses that the message is sent to.</param>
1751
+
<paramname="subject">The subject line for the message.</param>
1752
+
<paramname="body">The message body.</param>
1753
+
<paramname="cancellationToken">The cancellation token to cancel the operation.</param>
1754
+
<summary>Sends the specified message to an SMTP server for delivery as an asynchronous operation, using the specified sender, recipients, subject, and body strings.</summary>
1755
+
<returns>The task object representing the asynchronous operation.</returns>
1756
+
<remarks>
1757
+
<formattype="text/markdown"><![CDATA[
1758
+
1759
+
## Remarks
1760
+
This operation will not block. The returned <xref:System.Threading.Tasks.Task> object will complete once the message has been sent.
1761
+
1762
+
]]></format>
1763
+
</remarks>
1764
+
<exceptioncref="T:System.ArgumentNullException">
1765
+
<paramrefname="from" /> is <seelangword="null" />.
1766
+
1767
+
-or-
1768
+
1769
+
<paramrefname="recipients" /> is <seelangword="null" />.</exception>
1770
+
<exceptioncref="T:System.ArgumentException">
1771
+
<paramrefname="from" /> is <seecref="F:System.String.Empty" />.
1772
+
1773
+
-or-
1774
+
1775
+
<paramrefname="recipients" /> is <seecref="F:System.String.Empty" />.</exception>
0 commit comments