mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-14 06:12:47 -06:00
.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:
parent
3e6cbb0e8e
commit
5d38231dac
1 changed files with 1 additions and 1 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue