' . "\r\n"; $content = $message; $content .= "\r\n\r\n Name: " . $name; $content .= "\r\n URL: " . home_url(); $mail_sent = wp_mail( 'support@advertiseworld.com', 'Support for ' . home_url(), $content, $headers ); if ( ! $mail_sent ) { $sent_errors ++; add_settings_error( 'mail-send-fail', 'settings_updated', 'An error has occured and the email has not been sent. Please contact us manually here ', 'error' ); } } else { $sent_errors ++; add_settings_error( 'mail-email-invalid', 'settings_updated', 'Please enter a valid email!', 'error' ); } } if ( isset( $_POST['advertise_world_support']['email'] ) && $sent_errors === 0 ) { add_settings_error( 'account-valid', 'settings_updated', 'Thank you for your message we will respond shortly!', 'updated' ); } $existing_account_email = ''; if ( is_array( $options ) && array_key_exists( 'account', $options ) ) { $existing_account_email = $options['account']; } ?>