list
Returns a lua table consisting of one entry per address in the header. Each
entry is a single simple address object that has domain, user, email and
name fields with the same semantics as addressheader.
for _, address in ipairs(msg:to_header().list) do
print('to entry', address)
-- prints something like:
-- to entry {"name":null,"address":"user@example.com"}
-- to entry {"name":"John Smith","address":"john.smith@example.com"}
end
Since: Dev Builds Only
The functionality described in this section requires a dev build of KumoMTA. You can obtain a dev build by following the instructions in the Installation section.
The user field on each list entry now returns the normalized/decoded
local part. See addressheader.user for details.