Rebol Programming/parse-email-addrs

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

PARSE-EMAIL-ADDRS data 

DESCRIPTION:[edit | edit source]

(undocumented)


PARSE-EMAIL-ADDRS is a function value.

ARGUMENTS:[edit | edit source]

  • data -- (Type: string none)

SOURCE CODE[edit | edit source]

parse-email-addrs: func [data [string! none!]][
    if none? data [return none] 
    Mail-List-Rules/parse-mail-list data
]