.Web: added default (Null) value for 'name' parameter of member function SmtpMail::ReplyTo

git-svn-id: svn://ultimatepp.org/upp/trunk@3114 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
rylek 2011-01-27 19:03:16 +00:00
parent 3e6cbb0e8e
commit 5d38231dac

View file

@ -12,7 +12,7 @@ public:
SmtpMail& To(const String& t, AS a = TO) { return To(t, Null, a); }
SmtpMail& Cc(const String& t, const String& name = Null) { return To(t, name, CC); }
SmtpMail& Bcc(const String& t, const String& name = Null) { return To(t, name, BCC); }
SmtpMail& ReplyTo(const String& r, const String& name);
SmtpMail& ReplyTo(const String& r, const String& name = Null);
SmtpMail& Text(const String& t, const String& mime_ = Null) { text.Add(t); mime.Add(mime_); return *this; }
SmtpMail& NoHeader() { no_header = true; return *this; }
SmtpMail& NoHeaderSep() { no_header_sep = true; return *this; }