Plugin Directory

Changeset 1748558


Ignore:
Timestamp:
10/18/2017 10:21:00 AM (8 years ago)
Author:
bigin
Message:

Images & Processor change

Location:
simplemailer
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • simplemailer/trunk/SimpleMailerProcessor.php

    r1747727 r1748558  
    449449                    <div class="field-group-compresser">
    450450                        <fieldset>
    451                             <legend><?php echo __('E-mail settings', 'sm'); ?></legend>
     451                            <legend><?php echo __('Email settings', 'sm'); ?></legend>
    452452                            <div class="form-group">
    453453                                <label for="emailfrom"><?php echo __('Email Address', 'sm'); ?> <span class="required">*</span></label><br>
  • simplemailer/trunk/readme.txt

    r1748551 r1748558  
    1515A common feature of many websites is a contact form. SimpleMailer - is an end-user friendly contact form plugin, it is quite easy to configure and customize. The basic plugin has been kept extremely simple to allow an easy and quick implementation in your WordPress site.
    1616
    17 SimpleMailer supports SMTP by default, but if you like, you can also use the PHP **`mail()`** function.
     17SimpleMailer supports SMTP by default, but if you like, you can also use the PHP **mail()** function.
    1818
    1919Standard SimpleMailer form submits data via "normal" browser request(POST), but you can make them nicer by using AJAX to submit the form data in the background.
     
    2424== Installation ==
    2525
    26 1. Upload the SimpleMailer plugin to your plugins directory **`/wp-content/plugins/`**, or install the plugin through the WordPress plugins screen directly.
    27 2. Activate the plugin through the **`Plugins`** menu in WordPress.
    28 3. Once done, go to the plugin settings page at **`Settings` » `SimpleMailer`** and enter the relevant data, then save (Note that you also need "administrator" capability to change the SimpleMailer settings).
     261. Upload the SimpleMailer plugin to your plugins directory **/wp-content/plugins/**, or install the plugin through the WordPress plugins screen directly.
     272. Activate the plugin through the **Plugins** menu in WordPress.
     283. Once done, go to the plugin settings page at **Settings » SimpleMailer** and enter the relevant data, then save (Note that you also need "administrator" capability to change the SimpleMailer settings).
    2929
    3030= Displaying the contact form on the front-end =
     
    3232There are three options on how to display the contact form on your WordPress site:
    33331. Displaying the SimpleMailer Widget
    34 2. Including Short Code **`[simplemailer]`** on a specific page
    35 3. By calling the function **`<?php $sm->getForm(); ?>`** in your theme file
     342. Including Short Code **[simplemailer]** on a specific page
     353. By calling the function **<?php $sm->getForm(); ?>** in your theme file
    3636
    37 Let's just say, you want to add the SimpleMailer form widget to your website’s sidebar. You can find the SimpleMailer form widget on **`Appearance` » `Widgets`** page in your WordPress dashboard. Go ahead and add SimpleMailer widget into your right sidebar area. If you visit your website now, you will be able to see the contact form widget in the sidebar on your page. Note that your WordPress theme should support the widget areas.
     37Let's just say, you want to add the SimpleMailer form widget to your website’s sidebar. You can find the SimpleMailer form widget on **Appearance » Widgets** page in your WordPress dashboard. Go ahead and add SimpleMailer widget into your right sidebar area. If you visit your website now, you will be able to see the contact form widget in the sidebar on your page. Note that your WordPress theme should support the widget areas.
    3838
    39 The easiest way to display SimpleMailer form on a specific page is to use Shortcode. For instance, the following Shortcode in the body of a post or page would add contact form to that post or page: **`[simplemailer]`**
     39The easiest way to display SimpleMailer form on a specific page is to use Shortcode. For instance, the following Shortcode in the body of a post or page would add contact form to that post or page: **[simplemailer]**
    4040
    41 And the third option can be used to display the form anywhere you want in your theme files. To do this, simply add the function **`<?php $sm->getForm(); ?>`**  to one of your theme PHP files.
     41And the third option can be used to display the form anywhere you want in your theme files. To do this, simply add the function **<?php $sm->getForm(); ?>**  to one of your theme PHP files.
    4242
    4343= Configuring SimpleMailer =
    4444
    45 As mentioned before, SimpleMailer supports SMTP by default, the checkbox **`Enable SMTP`** must be activated.
     45As mentioned before, SimpleMailer supports SMTP by default, the checkbox **Enable SMTP** must be activated.
    4646
    4747Now, fill in the child input fields below this checkbox to complete the SMTP settings.
     
    5757* SMTP Debug: 0
    5858
    59 If you would like to use the PHP **mail()** function instead, just deactivate the **`Enable SMTP`** checkbox. The entries in the child input fields below are then irrelevant.
     59If you would like to use the PHP **mail()** function instead, just deactivate the **Enable SMTP** checkbox. The entries in the child input fields below are then irrelevant.
    6060
    6161At the bottom of the settings page you will find the Google [reCaptcha](https://developers.google.com/recaptcha/) configuration. To start using reCAPTCHA, you need to sign up for an API key pair for your site. You then insert these into the corresponding input fields. Please also note that the PHP cURL extension has to be installed on your server for reCAPTCHA to work.
     
    6565= Advanced settings for advanced users =
    6666
    67 Advanced configuration settings are managed within the **`config.php`** file. By default, however, there is no config.php file in your plugin installation directory, you have to create this file first, as follow. The directory **`/wp-content/plugins/simplemailer/`** contains a **`custom.config.php`** file. You will need to make a copy of the custom.config.php file and name it config.php, that one will take priority over default SimpleMailer settings.
     67Advanced configuration settings are managed within the **config.php** file. By default, however, there is no config.php file in your plugin installation directory, you have to create this file first, as follow. The directory **/wp-content/plugins/simplemailer/** contains a **custom.config.php** file. You will need to make a copy of the custom.config.php file and name it config.php, that one will take priority over default SimpleMailer settings.
    6868
    6969== Changelog ==
Note: See TracChangeset for help on using the changeset viewer.