GetCompanyEmailAddress

Description

Returns the company email address of the company for the current locale.

Syntax

Perl


$prodinfo->GetCompanyEmailAddress(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the company email address (for example, us.hcl.com.)

Example

Perl


use CQPerlExt;



my $cqobject = CQSession::Build();

my $prodinfo = $cqobject->GetProductInfo();

print "CompanyEmailAddress = '".$prodinfo->GetCompanyEmailAddress()."'\n";

CQSessionen ::Unbuild($cqobject);