Creates MailBuilder class that can be used to create an actual email. This method copies attachments, sets References, InReplyTo, Text, and Html properties.

Namespace: Limilabs.Mail
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public MailBuilder ReplyToAll(
	string fromAddress
)
Visual Basic
Public Function ReplyToAll ( _
	fromAddress As String _
) As MailBuilder
Visual C++
public:
MailBuilder^ ReplyToAll(
	String^ fromAddress
)

Parameters

fromAddress
Type: System..::..String
From address used for replying.

Return Value

MailBuilder class that can be used to create an actual email.

See Also