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


Reply via email to