diff options
Diffstat (limited to 'src/char/int_mail.c')
-rw-r--r-- | src/char/int_mail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/char/int_mail.c b/src/char/int_mail.c index b19b732c7..98da43aeb 100644 --- a/src/char/int_mail.c +++ b/src/char/int_mail.c @@ -422,7 +422,8 @@ static void mapif_parse_Mail_send(int fd) if( msg.dest_id > 0 ) msg.id = mail_savemessage(&msg); - mapif_Mail_send(fd, &msg); + mapif_Mail_send(fd, &msg); // notify sender + mapif_Mail_new(&msg); // notify recipient } void mail_sendmail(int send_id, const char* send_name, int dest_id, const char* dest_name, const char* title, const char* body, int zeny, struct item *item) |