mirror of
https://github.com/mt-mods/mail.git
synced 2025-04-30 08:21:44 -04:00
Fix bcc forgotten in mail.send()
This commit is contained in:
parent
425ad39547
commit
c942dc1a84
1 changed files with 1 additions and 0 deletions
1
api.lua
1
api.lua
|
@ -88,6 +88,7 @@ function mail.send(...)
|
||||||
sender = m.from,
|
sender = m.from,
|
||||||
to = m.to,
|
to = m.to,
|
||||||
cc = m.cc,
|
cc = m.cc,
|
||||||
|
bcc = m.bcc,
|
||||||
subject = m.subject,
|
subject = m.subject,
|
||||||
body = m.body,
|
body = m.body,
|
||||||
time = os.time(),
|
time = os.time(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue