Return SPF and DKIM hints when getSupportedDrivers() is called

This commit is contained in:
Kijin Sung 2016-05-19 14:20:24 +09:00
parent 729bfe8239
commit a098685c29

View file

@ -84,6 +84,8 @@ class Mail
'name' => $class_name::getName(),
'required' => $class_name::getRequiredConfig(),
'api_types' => $class_name::getAPITypes(),
'spf_hint' => $class_name::getSPFHint(),
'dkim_hint' => $class_name::getDKIMHint(),
);
}
}
@ -95,6 +97,8 @@ class Mail
'name' => $driver->getName(),
'required' => $driver->getRequiredConfig(),
'api_types' => $driver->getAPITypes(),
'spf_hint' => $class_name::getSPFHint(),
'dkim_hint' => $class_name::getDKIMHint(),
);
}
}