loading...empty;done;/email-via-external-smtp/:-uriEmail using external SMTP | iNET.elastic Dev Docs

External SMTP for Emails Sending

SMTP (Simple Mail Transfer Protocol) is a standard for sending emails via Internet protocol (IP) networks. Communication between sender and receiver is performed via emanating command strings and delivering data using a reliable data stream channel, a TCP connection usually. In this tutorial we will show how to send emails via SMTP using PaaS PHP hosting. Here we present two ways of performing this settings:

PHPMailer for Email Sending

PHPMailer is a classic full-featured email sending class for PHP, compatible with PHP v. 5.0 and higher. Let’s examine how to integrate it to the platform.

1. Log in to the platform dashboard.

2. Create your PHP environment. For that press the Create environment button and navigate to the PHP tab in the opened dialog box.

3. Choose Apache application server and specify cloudlet limits for it. Then enable Public IP feature for Apache node, type the name for your new environment (for example, phpmailer) and click Create.

create PHP environment

4. Download the PHPMailer script (here we provide you with our custom version which excludes all extra settings and is targeted only on SMTP).

5. Navigate to the Deployment manager and Upload the downloaded package to the platform dashboard.

deployment manager

upload phpmailer archive

6. When the uploading is completed, deploy PHPMailer package to the environment you’ve created before.

deploy PHPMailer

7. Then click Config button next to your application server and open webroot > {context_name} > config.php file.

PHPMailer configuration

8. Specify all the necessary data there to configure mailing via localhost or via some specific email account:

Sending via Localhost

You can send emails directly from your app without specifying real email account. In this case you don’t have any restrictions on frequency and quantity of sent emails, but your mailings can be detected as spam.

For using this configuration you should state the following parameter values:

  • host: state localhost value
  • auth: state false (it will disable the authentication as it isn’t required for localhost)
  • username: state the name you would like to be shown as a sender name
  • addreply: state the email which will be used for sending replies to your mailings. Note that it is obligatory parameter to state the value for.
  • replyto: state the same email as for addreply parameter

email via localhost configs

Save the changes made. After that you can click Open in Browser button next to your environment and you’ll see the form for email sending.

PHPMailer send email form

Enter the test info in the fields and click Submit. In a few minutes this email will appear in your inbox.

test email from localhost

Note: If you didn’t receive the email in a few minutes, check your Spam mail folder.

Sending via Real Email Account

In case you have a special email account registered for your mailings, you can use it too. In such a way your emails most likely won’t drop in the spam folder, but you’ll meet some restrictions regarding, for example, amount of emails you can send. In the following example we will use the gmail.com email account.

You can use the following configuration as an example:

  • host: state ssl://smtp.gmail.com
  • port: 465 (SMTP port of your email provider, gmail in our case)
  • username: state the email account you would like to use
  • password: state the password to the account you’ve specified in the username line
  • addreply and replyto: state the same email as in the username line (the one you are going to use for mailings)

email via GMail configs

Save the changes made. Click Open in Browser button next to your environment to see the form for email sending.

PHPMailer send email form

Enter the test info in the fields and click Submit. In a moment this email will appear in your inbox.

test email from GMail

Using Custom Form for Email Sending

You can prepare your own custom code of the form and set it to be used for sending emails:

1. Press Config button next to the Apache server.

Apache config button

2. Navigate to the webroot/ROOT (or another context) folder and create new file there, for example, mailtest.php.

create mailtest page

3. Paste the code of your custom form to the file created and Save the changes made.

You can use our example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
<form method=POST ation=#>
From <input type=text name=from><br />
To <input type=text name=to><br />
Subject <input type=text name=subj><br />
Type your message  <input type=text name=text><br />
<input type=submit name=sub value=Send>
</form>
<?php
if ($_POST['sub']){
 system ("echo {$_POST['text']} | mail -s {$_POST['subj']} -r {$_POST['from']}  {$_POST['to']}");}
?>

mailtest page PHP code

4. Then Open in Browser your environment and add the name of your file to the end of the URL. You will see the following form:

custom email sending form

5. For sending emails you can use both localhost and real email account (just type “localhost” or necessary email in From field). After filling in all the fields click Send.

As a result the recipient will get the email.

test email from custom form

Note: Email can drop into the spam folder.

That’s all! Now you can perform your mailings directly from your application, hosted with the platform.

What’s next?