Function: imap-envelope-from

imap-envelope-from is a byte-compiled function defined in imap.el.gz.

Signature

(imap-envelope-from FROM)

Documentation

Return a FROM string line.

Source Code

;; Defined in /usr/src/emacs/lisp/net/imap.el.gz
(defun imap-envelope-from (from)
  "Return a FROM string line."
  (and from
       (concat (aref from 0)
	       (if (aref from 0) " <")
	       (aref from 2)
	       "@"
	       (aref from 3)
	       (if (aref from 0) ">"))))