Server IP : 66.29.132.124 / Your IP : 3.137.170.38 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Email/ |
Upload File : |
<?php namespace Modules\Email; use Modules\Core\Abstracts\BaseSettingsClass; class SettingClass extends BaseSettingsClass { const EMAIL_DRIVER=[ "mail","smtp", "sendmail", "mailgun", "ses","sparkpost", "postmark", "log", "array" ]; public static function getSettingPages() { return [ [ 'id' => 'email', 'title' => __("Email Settings"), 'position'=>90, 'view'=>"Email::admin.settings.email", "keys"=>[ 'email_driver', 'email_host', 'email_port', 'email_encryption', 'email_username', 'email_password', 'email_mailgun_domain', 'email_mailgun_secret', 'email_mailgun_endpoint', 'email_postmark_token', 'email_ses_key', 'email_ses_secret', 'email_ses_region', 'email_sparkpost_secret', 'email_footer', 'email_header', 'admin_email', 'email_from_name', 'email_from_address', ], 'html_keys'=>[ ] ] ]; } }