Server IP : 104.21.38.3 / Your IP : 172.70.208.53 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/wp-mail-smtp/src/Providers/Mail/ |
Upload File : |
<?php namespace WPMailSMTP\Providers\Mail; use WPMailSMTP\Admin\SetupWizard; use WPMailSMTP\Providers\OptionsAbstract; /** * Class Option. * * @since 1.0.0 */ class Options extends OptionsAbstract { /** * Mail constructor. * * @since 1.0.0 */ public function __construct() { parent::__construct( array( 'logo_url' => wp_mail_smtp()->assets_url . '/images/providers/php.svg', 'slug' => 'mail', 'title' => esc_html__( 'Default (none)', 'wp-mail-smtp' ), ) ); } /** * @inheritdoc */ public function display_options() { ?> <blockquote> <?php printf( wp_kses( /* translators: %1$s - URL to all mailer doc page. %2$s - URL to the setup wizard. */ __( 'You currently have the <strong>Default (none)</strong> mailer selected, which won\'t improve email deliverability. Please select <a href="%1$s" target="_blank" rel="noopener noreferrer">any other email provider</a> and use the easy <a href="%2$s">Setup Wizard</a> to configure it.', 'wp-mail-smtp' ), [ 'strong' => [], 'a' => [ 'href' => [], 'rel' => [], 'target' => [], ], ] ), esc_url( wp_mail_smtp()->get_utm_url( 'https://wpmailsmtp.com/docs/a-complete-guide-to-wp-mail-smtp-mailers/', 'Default mailer - any other email provider' ) ), esc_url( SetupWizard::get_site_url() ) ); ?> </blockquote> <?php } }