mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-25 21:32:51 +09:00
Return SPF and DKIM hints when getSupportedDrivers() is called
This commit is contained in:
parent
729bfe8239
commit
a098685c29
1 changed files with 4 additions and 0 deletions
|
|
@ -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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue