PowerTCP Mail for .NET
ReplyTo Property
See Also  Send comments on this topic.
Dart.PowerTCP.Mail Namespace > MessageStream Class : ReplyTo Property




Gets or sets the Reply-To header field in the message.

Syntax

Visual Basic (Declaration) 
Public Property ReplyTo As MailAddress
Visual Basic (Usage)Copy Code
Dim instance As MessageStream
Dim value As MailAddress
 
instance.ReplyTo = value
 
value = instance.ReplyTo
C# 
public MailAddress ReplyTo {get; set;}
Managed Extensions for C++ 
public: __property MailAddress* get_ReplyTo();
public: __property void set_ReplyTo( 
   MailAddress* value
);
C++/CLI 
public:
property MailAddress^ ReplyTo {
   MailAddress^ get();
   void set (    MailAddress^ value);
}

Property Value

MailAddress value representing the email address of the person a reply to this message should be sent.

Remarks

In some cases it may be necessary that the sending email address contained in the MessageStream.From property is not the same address that message replies are sent to. Most email clients use the ReplyTo to as the default address when creating a response to a message instead of the MessageStream.From value.

Requirements

Target Platforms: Microsoft .NET Framework 2.0

See Also

Documentation Version 3.2
© 2010 Dart Communications. All Rights Reserved.