Grow with AppMaster Grow with AppMaster.
Become our partner arrow ico

Configuring the Custom SMTP module

Configuring the Custom SMTP module

The Custom SMTP module adds basic settings to allow you to send emails directly from your application.

To make the form for sending letters to appear in the application, you need to add the missing settings and necessary elements. The algorithm of actions will be as follows:

  1. Add a page or window where the letter form will be located.
  2. Connect the module, add SMTP server parameters to it, as well as your username and password.
  3. Create module-related business process, endpoint, and form.

Let's show how to do this in a web application using the Gmail mail service as an example.

Create a page

Go to the editor and create a new page from which you will post. Indicate the name of your page ("Title"), its address ("Page URL"), and groups of users who can send messages ("Show for groups"). Click “Save”.

Save your changes and go to the module block.

Adding and configuring a module

Find the Custom SMTP module in the Marketplace tab and click the Install button to add it to the application.

Go to the "Installed" tab, where all the modules installed in your application are located, and click on the "Custom SMTP" box to open its settings. Basic information about the module and a button to remove it from the application are displayed on the left. On the right are the fields that you need to fill in:

  1. In the fields "Login" and "Password" enter the data of the mailbox from which you will send messages.
  2. Specify SMTP connection settings - they are different for each e-mail service. By default, Gmail settings are added to the module.
  3. In the "From Name" field, enter the name that will be displayed to the recipients of your letters.

Important! To send messages via Gmail, you need to enable third-party applications in your Google account.

For more information on what modules are, how to update and customize them, see our documentation.

Remember to save your changes.

Creation of a business process, endpoint, and form

The business process, endpoint, and form are interrelated elements that are important to set up consistently. By interacting with each other, they will complete the configuration of your application - and the form for sending a message will appear on the page.

You can read more about these elements in our documentation.

Business process

Go to the "Business logic" tab and click on the button to create a new business process.

Enter the name of the process (required), its description (optional), and click the "Create" button.

Each business process in the editor is visually divided into blocks - constituent parts responsible for different functions. When a new process is created, "Start" and "End" appear automatically in it. All other blocks that you can add will be displayed on the left.

After installation, the "Custom SMTP" module added "Custom SMTP: Send Email" to this list. To include this block in a business process, drag it to the editor field using the mouse pointer. The "Custom SMTP: Send Email" window will appear, the fields of which contain the variables on which the content of your future message sending form depends:

  • "Subject" - the subject of the letter;
  • "Body" - a field with the text of the letter;
  • "To" - the recipient's address;
  • "Cc" - address for sending a copy;
  • "From name" - the name of the sender;
  • "Bcc" is the address to send the blind carbon copy.

Now you need to link "Start", "Custom SMTP: Send Email" and "End" - to show that they constitute a single business process:

1. Move the mouse pointer over the "Start" field in the "Start" block, hold down the left mouse button, and swipe to the "In" field in the "Custom SMTP: Send Email" block - a connection is formed between the blocks.

Try AppMaster no-code today!
Platform can build any web, mobile or backend application 10x faster and 3x cheaper
Start Free

2. Similarly, create a link between the "Out" field of the "Custom SMTP: Send Email" block and the "End" field of the "End" block

Now, in the "Start" block, you need to create new fields (variables) and associate them with variables in the "Custom SMTP: Send Email" block. The fields that you add to the "Start" block will appear in your message submission form. Imagine that you will not send copies and blind copies, so the "Start" block will contain the following fields:

  • “Sender” (sender's name) - associated with from_name;
  • "Address" (to whom it was sent) - associated with "to";
  • "Subject" (topic); - associated with "subject" (variable names in different blocks may be the same);
  • "Message" (text of the letter) - associated with "body".

To bind variables, they must match each other in type. The type of a variable can be viewed by clicking on the block in which it is contained and opening the edit menu.


In the fields of the blocks, next to each variable there is an icon, the color, and shape of which depends on its type - to make it easier to navigate in them. In our example, there are two types of variables:

  • "Subject", "body" and "from_name" are of type "String",
  • To, cc and bcc are of type Email Array.

Creating Variables

To create the first variable in the "Start" block, click on it - a list will be displayed (while it is empty). Click on "+".

In the opened window, enter the name of the variable: name "sender", type "String". Click "Create".

Similarly add "address", "subject" and "message". Now the list of variables in the "Start" block looks like this:

Link them to the corresponding variables in the Custom SMTP: Send Email block:

This is how the relationships between the variables should look like in the end. Save your changes and proceed to create the endpoint.

Endpoint

Click "Create endpoint" - you will find yourself in the settings on the "Business Logic" tab, here you need to specify the following settings:

  • "Endpoint route" - the name of the endpoint, by which you will understand its function;
  • "Endpoint Groups" - the name of the group in which it will be located;
  • "Request type" - select "POST";
  • "Business Process" - select the send_email business process you created.

Then go to the "Middleware" tab.

On the “Middleware” tab, you need to configure the rights to perform actions with this endpoint (and, therefore, to launch the associated business process). In other words, you will specify who can send emails from your application. To do this, you need to change the setting of the "Token Auth" authorization token.

Attention! If this setting is not changed, then all users will have the right to send emails!

Click on the gear icon next to “Token Auth”. In the opened window, turn on the selector, in the "Allowed groups" field, select the "Admins" group (or any other that you want to give access to). Click "Save"

Try AppMaster no-code today!
Platform can build any web, mobile or backend application 10x faster and 3x cheaper
Start Free


Now save the endpoint by clicking "Create".

Message sending processes are configured. Now you can create a visual representation of the message submission form.

Form

To create a form, return to the web application editor, to the tab you created earlier. Drag a Form element onto the page canvas.

In the opened window, click "Create record", the list of available endpoints will be displayed in the "Save Record to" field - select the one that you just created. Click "Assign".

The shape you created appears on the canvas. Click the gear image to go to its settings.

On the “Look & Fee”l tab, enter a title for the form in the “Title” field. Here you can also change its appearance and see the name under which it is recorded in the settings.

On the "Data" tab - information about the mode of the form and the endpoint. Also here you can change the location of the fields by moving them relative to each other.

Arrange the fields in a logical order: Sender, Address, Subject, Message. To change the detailed settings for each field (for example, its name) - click on the gear icon next to it. Click “Save” to save your changes.

Adding a button for a form

For the form to work, you need to add a submit confirmation button. Use the "Button" element - drag it with the mouse pointer to the area below the form.

Open the button settings by clicking on it. On the “Look & Feel” tab, change the “Label” (the name of the button that will be visible in the application) and “Name” (the name that will be displayed in the settings).

On the "Triggers" tab, add an action to the onClick trigger: in the "Target" field, select your form, in the "Action" field, select "Submit form". Click “Save”.

Preservation, publication, and verification

Save all the changes made, publish them, click on the go to the application icon.

Enter the data to send the message. If you leave the sender field empty, the name you entered in the module settings will automatically be added. Send a test message to any email address that you have access to.

After sending, a confirmation message should appear, and a letter with the specified data will appear at the addressee in the Inbox folder.

If you did everything according to the instructions, but instead of confirming an error comes out or the letter ends up in the "Spam" folder, write to our technical support telegram channel.


Related Posts

The Key to Unlocking Mobile App Monetization Strategies
The Key to Unlocking Mobile App Monetization Strategies
Discover how to unlock the full revenue potential of your mobile app with proven monetization strategies including advertising, in-app purchases, and subscriptions.
Key Considerations When Choosing an AI App Creator
Key Considerations When Choosing an AI App Creator
When choosing an AI app creator, it's essential to consider factors like integration capabilities, ease of use, and scalability. This article guides you through the key considerations to make an informed choice.
Tips for Effective Push Notifications in PWAs
Tips for Effective Push Notifications in PWAs
Discover the art of crafting effective push notifications for Progressive Web Apps (PWAs) that boost user engagement and ensure your messages stand out in a crowded digital space.
GET STARTED FREE
Inspired to try this yourself?

The best way to understand the power of AppMaster is to see it for yourself. Make your own application in minutes with free subscription

Bring Your Ideas to Life