Skip to content

Version Three point Two point One: Fixed some small issues

Latest
Compare
Choose a tag to compare
@ImmanuelNL ImmanuelNL released this 26 Feb 15:30
· 10 commits to master since this release
a6ff905

Version three update: translations are now available!

Supported languages:

  • Dutch (Nederlands)
  • English (British)

How do I install E-Mail Service Provider?

  1. Install E-Mail Service Provider by clicking here.
  2. Upload E-Mail Service Provider to your PHP project.
  3. Rename E-Mail Service Provider to E-mail
  4. Open settings.php.
  5. Fill in your e-mail domain under $emailExtention.
    *) Examples: example.com and thewebzone.nl.
    *) Do not add an @-sign.
  6. Fill in the usual user(name) from who/which e-mails will be sent under $standardFrom.
  7. Select if you would like to have HTML-support turned on by default under $htmlSupported.
  8. Open emails.txt.
  9. On each line, you fill in the available e-mail user(name)s.
    *) Make sure you add the default e-mail address.
    *) Do NOT fill in the first line: this won't be read.
  10. Visit http(s)://<your_domain>/E-mail/ in your web browser.
  11. If you see any errors, follow the instructions to fix them.

My language isn't supported. What do I do?

If your language isn't supported, we advise you to translate it yourself or send us an e-mail. Our e-mail address is info at thewebzone dot nl make sure you add ESP or E-Mail Service Provider in your e-mail's subject.

How to add your language(s)?

It actually is really easy.

  1. Copy en.php
  2. Rename it to: <country_abbreviation_lowercase>.php
  3. Translate the file.
  4. Open info.php
  5. Add the following line of text to the file:
$langs["<country_abbreviation_lowercase>"] = "<full_language_name_in_your_language>";
  1. You can change the default language under settings.php in the main directory.
    *) Do this by changing $lang to the language abbreviation of your desired default language.
    Country abbreviations can be found in ISO 639-1

Examples (Country abbreviations are according to ISO 639-1)

$langs["de"] = "Deutsch";
$langs["en"] = "English";
$langs["es"] = "Español";
$langs["fr"] = "Français";
$langs["nl"] = "Nederlands";