AmazonSES
1 year ago
ElasticEmail
1 year ago
Gmail
1 year ago
Mail
1 year ago
Mailgun
1 year ago
Mailjet
1 year ago
Outlook
1 year ago
Pepipost
1 year ago
PepipostAPI
1 year ago
Postmark
1 year ago
SMTP
1 year ago
SMTP2GO
1 year ago
SMTPcom
1 year ago
Sendgrid
1 year ago
Sendinblue
1 year ago
Sendlayer
1 year ago
SparkPost
1 year ago
Zoho
1 year ago
AuthAbstract.php
1 year ago
AuthInterface.php
1 year ago
Loader.php
1 year ago
MailerAbstract.php
1 year ago
MailerInterface.php
1 year ago
OptionsAbstract.php
1 year ago
OptionsInterface.php
1 year ago
OptionsInterface.php
72 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPMailSMTP\Providers; |
| 4 | |
| 5 | /** |
| 6 | * Interface ProviderInterface, shared between all current and future providers. |
| 7 | * Defines required methods across all providers. |
| 8 | * |
| 9 | * @since 1.0.0 |
| 10 | */ |
| 11 | interface OptionsInterface { |
| 12 | |
| 13 | /** |
| 14 | * Get the mailer provider slug. |
| 15 | * |
| 16 | * @since 1.0.0 |
| 17 | * |
| 18 | * @return string |
| 19 | */ |
| 20 | public function get_slug(); |
| 21 | |
| 22 | /** |
| 23 | * Get the mailer provider title (or name). |
| 24 | * |
| 25 | * @since 1.0.0 |
| 26 | * |
| 27 | * @return string |
| 28 | */ |
| 29 | public function get_title(); |
| 30 | |
| 31 | /** |
| 32 | * Get the mailer provider description. |
| 33 | * |
| 34 | * @since 1.0.0 |
| 35 | * |
| 36 | * @return string |
| 37 | */ |
| 38 | public function get_description(); |
| 39 | |
| 40 | /** |
| 41 | * Get the mailer provider minimum PHP version. |
| 42 | * |
| 43 | * @since 1.0.0 |
| 44 | * |
| 45 | * @return string |
| 46 | */ |
| 47 | public function get_php_version(); |
| 48 | |
| 49 | /** |
| 50 | * Get the mailer provider logo URL. |
| 51 | * |
| 52 | * @since 1.0.0 |
| 53 | * |
| 54 | * @return string |
| 55 | */ |
| 56 | public function get_logo_url(); |
| 57 | |
| 58 | /** |
| 59 | * Output the mailer provider options. |
| 60 | * |
| 61 | * @since 1.0.0 |
| 62 | */ |
| 63 | public function display_options(); |
| 64 | |
| 65 | /** |
| 66 | * Get the mailer supported settings. |
| 67 | * |
| 68 | * @since 2.3.0 |
| 69 | */ |
| 70 | public function get_supports(); |
| 71 | } |
| 72 |