Hi :-)
try looking into import-email function, e.g. source import-email. But
you don't necessarily have to, as it's usage is very simple:
msg: import-email first inbox
print [ msg/from tab msg/subject tab msg/date]
print msg/content
or try looking into it by typing:
print mold msg
HopeThisHelps,
-pekr-
[EMAIL PROTECTED] wrote:
> The following code will check for email:
> How may I read the body of the email message
> into another variable, without the header?
> Thanks :>) (code below)
> ;;====================================================
> either empty? inbox
> [
> print "No messages in inbox"
> ]
> [
> forall inbox
> [
> print first inbox
> ;here I would like to write the
> ;body of the message (without the headers)
> ;to another variable
> ]
> ]
> close inbox
> ;;thank you all
> ;;tim