fixed bug #42608 SMTP usage in opening comment swaps sender and receiver

This commit is contained in:
Simon Goldschmidt 2014-09-02 20:34:55 +02:00
parent fce9446a1b
commit baaa81727a
1 changed files with 2 additions and 1 deletions

View File

@ -14,8 +14,9 @@
* static void my_smtp_test(void)
* {
* smtp_set_server_addr("mymailserver.org");
* -> set both username and password as NULL if no auth needed
* smtp_set_auth("username", "password");
* smtp_send_mail("recipient", "sender", "subject", "body", my_smtp_result_fn,
* smtp_send_mail("sender", "recipient", "subject", "body", my_smtp_result_fn,
* some_argument);
* }
*