MailMessageCreateReadReceipt Method |
Creates the read receipt.
Namespace:
Aspose.Email
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 20.2
Syntax public MailMessage CreateReadReceipt(
string from,
string bodyText
)
Public Function CreateReadReceipt (
from As String,
bodyText As String
) As MailMessage
public:
MailMessage^ CreateReadReceipt(
String^ from,
String^ bodyText
)
member CreateReadReceipt :
from : string *
bodyText : string -> MailMessage
Parameters
- from
- Type: SystemString
String that represents the sender address. - bodyText
- Type: SystemString
The message body text.
The default message body text will be applied if this parameter is null or empty.
Return Value
Type:
MailMessage
A newly created
MailMessage that represents the read receipt.
See Also