<docbook><section><title>VirtuosoOdsControllersWebmail</title><bridgehead class="http://www.w3.org/1999/xhtml:h2">Webmail Controllers</bridgehead>
<programlisting>
mail.message.new (
    inst_id integer
    toAddress varchar,
    bcAddress varchar := null,
    ccAddress varchar := null,
    priority integer := 3,
    subject varchar := &#39;&#39;,
    body varchar := &#39;&#39;
  )
mail.message.get (
    msg_id integer
  )
mail.message.move (
    msg_id integer,
    path varchar
  )
mail.message.delete (
    msg_id integer
  )
mail.folder.new (
    inst_id integer,
    path varchar
  }
mail.folder.delete (
    inst_id integer,
    path varchar
  )
mail.folder.rename (
    inst_id integer,
    oldPath varchar,
    newPath varchar
  )
mail.options.set (
    inst_id integer,
    options any                   -- URL encoded pairs &#39;name&#39;=&#39;value&#39; separated by comma.
                                  -- Ex. - msg_result%3D20 
                                  --       decodes to  msg_result=70
  )
mail.options.get (
    inst_id integer
  )

</programlisting><para> </para>
<bridgehead class="http://www.w3.org/1999/xhtml:h3">References</bridgehead>
<itemizedlist mark="bullet" spacing="compact"><listitem><ulink url="VirtuosoOdsControllers">ODS Controllers</ulink> </listitem>
</itemizedlist></section></docbook>