IpGetmxrecords()

Returns the MX (mail exchange) hosts for the supplied domain

Usage

ARRAY = IpGetmxrecords( domain, dns )
Argument Summary
domain domain - the name of the server you wish to get the MX records for
dns dns - IP address of the DNS server to use for the lookup [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

IpGetmxrecords(
   domain=?, 
   dns=?
);

Supports passing parameters as a structure using ArgumentCollection:

IpGetmxrecords( ArgumentCollection={
   domain : ?, 
   dns : ?
} );