![]() |
|
mail multiple - Printable Version +- LogicMachine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: mail multiple (/showthread.php?tid=6492) |
mail multiple - dezza@sdme.it - 30.06.2026 Is there a way to send an email to multiple recipients? In the to field: xxx@yyy, aaa@rrr RE: mail multiple - admin - 30.06.2026 Use a table: Code: to = { 'user1@example.com', 'user2@example.com' }
res, err = mail(to, subject, message) |