Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
plugins
/
wp-mail-smtp
/
src
/
Providers
/
Pepipost
:
Options.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WPMailSMTP\Providers\Pepipost; use WPMailSMTP\Providers\OptionsAbstract; /** * Class Options. * * @since 1.0.0 */ class Options extends OptionsAbstract { /** * Pepipost constructor. * * @since 1.0.0 */ public function __construct() { parent::__construct( array( 'logo_url' => wp_mail_smtp()->assets_url . '/images/providers/pepipost-smtp.png', 'slug' => 'pepipost', 'title' => esc_html__( 'Pepipost SMTP', 'wp-mail-smtp' ), ) ); } }