Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

VERY simple send

Featured Replies

Hi,

I need some help with an email send option for a runtime I'm building. I don't need anything fancy, just a script that is as simple as the email function that is built in without having to use an outside program. Is there a way to do this without having to use complicated scripts and pre-made layouts, just basically replace the standard mail function?

You can make an email script with SMTPit Pro as simple as you need. In a set field script/button step, you could make the calculated result similar to this:


SMTPit_Clear & "¶" & 

SMTPit_SetHost( Email::Host ; Email::Port ) & "¶" &

SMTPit_SetAuthentication( Email::Authentication Type ; Email::Username ; Email::Password ; Email::SSL ) & "¶" & 

SMTPit_SetFrom( Email::From ) & "¶" & 

SMTPit_SetTo( Email::To ) & "¶" & 

SMTPit_SetSubject( Email::Subject ) & "¶" & 

SMTPit_SetBody( Email::Body ) & "¶" & 

SMTPit_Send





This would pass the data from each field to the plug-in to send the email.  Alternatively, you could hard code values or mix and match hard coded values with field values if you wanted.  For instance:





SMTPit_Clear & "¶" & 

SMTPit_SetHost( "mail.domain.com" ; "25" ) & "¶" &

SMTPit_SetAuthentication( "Auto" ; "[email protected]" ; "Password" ) & "¶" & 

SMTPit_SetFrom( Email::From ) & "¶" & 

SMTPit_SetTo( Email::To ) & "¶" & 

SMTPit_SetSubject( Email::Subject ) & "¶" & 

SMTPit_SetBody( Email::Body ) & "¶" &  

SMTPit_Send

This would send an email with the mail server settings hard coded in the script and the email data from the fields.

You can find a simple example database here:

http://examples.cnsplug-ins.com/index.htm?id=HoLCJUuQ

The plug-in can be downloaded from here:

http://www.cnsplug-ins.com/download.htm

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.