maddy/docs/reference/table/email_localpart.md
Pēteris Caune 5d6d1a3a53
Improve Markdown formatting
* use <h3> and <hr> elements to separate configuration directives
* use <code> elements to mark constants, fs paths,
  module names etc.
* fix unneeded "\_" escaping
* fix list formatting
2023-06-29 16:12:11 +03:00

519 B

Email local part

The module table.email_localpart extracts and unescapes local ("username") part of the email address.

E.g.

  • test@example.org => test
  • "test @ a"@example.org => test @ a

Mappings for invalid emails are not defined (will be treated as non-existing values).

table.email_localpart { }

table.email_localpart_optional works the same, but returns non-email strings as is. This can be used if you want to accept both user@example.org and user somewhere and treat it the same.