Class QEmailAttachment
This is the Base Class for ALL classes in the system. It provides
proper error handling of property getters and setters. It also
provides the OverrideAttribute functionality.
-
QBaseClass
-
QEmailAttachment
Methods summary
public
|
#
__construct( $strFilePath, $strSpecifiedMimeType = null, $strSpecifiedFileName = null )
|
public
mixed
|
#
__get( string $strName )
Override method to perform a property "Get"
This will get the value of $strName
All inhereted objects that call __get() should always fall through
to calling parent::__get() in a try/catch statement catching
for CallerExceptions.
Override method to perform a property "Get"
This will get the value of $strName
All inhereted objects that call __get() should always fall through
to calling parent::__get() in a try/catch statement catching
for CallerExceptions.
Parameters
- $strName
- Name of the property to get
Returns
mixed the returned property
Throws
Overrides
|