WS_OK_7.4.33 HEX
HEX
Server: nginx/1.21.4
System: Linux v12674 6.8.0-85-generic #85-Ubuntu SMP PREEMPT_DYNAMIC Thu Sep 18 15:26:59 UTC 2025 x86_64
User: endtheignorance (1014)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v12674/lcastore/public_html/wp-content/plugins/wp-mail-smtp/src/WPCLI/Commands/Manage.php
<?php

namespace WPMailSMTP\WPCLI\Commands;

use WP_CLI\Dispatcher\CommandNamespace;

/**
 * Configure WP Mail SMTP from the command line.
 *
 * Use one of the subcommands listed below. See `wp help wp-mail-smtp <subcommand>`
 * for detailed help on each one.
 *
 * ## EXAMPLES
 *
 *     wp wp-mail-smtp setup --mail.from_email=noreply@example.com --mail.from_name="Example" \
 *         --mail.mailer=smtp --smtp.host=mail.example.com --smtp.port=587 \
 *         --smtp.encryption=tls --smtp.auth=1 --smtp.user=foo --smtp.pass-file=/run/secret/smtp_pass
 *
 *     wp wp-mail-smtp option get mail.from_email
 *
 *     wp wp-mail-smtp test you@example.com
 *
 * @since 4.9.0
 */
class Manage extends CommandNamespace {

}