Applies To
Workbook Object.
Description
Replies to the workbook by creating a copy of the workbook and pre-initializing the new workbook's mailer to send to the originator of the workbook. Valid only when the workbook has a received mailer attached (you can only reply to a workbook you have received). Available only in Microsoft Excel for the Apple Macintosh with the PowerTalk mail system extension installed.
Syntax
object.Reply
object
Required. The Workbook object.
Remarks
To reply to a workbook, use this method to set up the mailer, use the Mailer property to adjust the mailer settings (if necessary), and then use the SendMailer method to send the reply.
This method generates an error if it is used in Microsoft Windows.
See Also
Mailer Property, MailSystem Property, ReplyAll Method, SendMailer Method.
Example
This example replies to the sender of the active workbook.
Set original = ActiveWorkbook If original.HasMailer Then original.Reply original.Mailer.Subject = "Here's my reply" ActiveWorkbook.SendMailer End If