Eyeon:Script/Reference/Applications/Fusion/Classes/MailMessage/GetTable

From VFXPedia

Jump to: navigation, search

Contents

MailMessage - GetTable()

Arguments

msg = GetTable()

This function does not take any arguments.

Returns

  • msg (table)

A table of subtables containing all components of the mail message.

Remarks

This function may be useful to examine parts of an existing message before sending.

Requirements

  • eyeonScript 5.01
  • Fusion 5.01

Examples

function CheckMail(msg)
   tbl = msg:GetTable()
 
   if tbl.From == nil then
      print("Error: No sender specified.")
   end
end


Tips for GetTable (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/MailMessage/GetTable