BreezingForms

BreezingForms es el único constructor de formularios para Joomla!® que combina tecnología moderna con características demandadas para aplicaciones empresariales. Des sencillos y bonitos formularios hasta aplicaciones complejas.

Si necesita crear formularios modernos con todo tipo de detalles y compatibilidades, como por ejemplo formularios adaptativos, Bootstrapt de Twitter® o aplicaciones web dinámicas, BreezingForms es la herramienta que necesita.

Con BreezingForms no se encontrará encerrado en una jaula de oro donde la facilidad y comodidad de uso conllevan características limitadas. Muy al contrario, nuestro software afronta con valentía los desafíos complejos y trata de solucionarlos de la manera más fácil y abierta posibles para que así usted pueda implementar las tareas más complejas.

Además integra la conexión con otros servicios populares como Google Drive®, Dropbox®, MailChimp® y permite crear formularios multilenguaje sin otras extensiones. 

Disponible para Joomla!® 4.x / 3.x / 2.5 i WordPress

Más información

ContentBuilder para Joomla!®

Debido a su facilidad de uso, a su rápida y potente puesta en marcha y al robusto código que lo sustenta, ContentBuilder cubre el vacío entre los usuarios regulares de Joomla! y los contenidos estructurados, obteniendo todas las ventajas de un CCK (Content Construction Kit).

La tarea principal de ContentBuilder es estructurar el contenido de Joomla!® (artículos), preservando el estilo nativo del sistema.

De hecho puede hacer muchas más cosas, como por ejemplo catálogos, directorios, anuncios clasificados, comunidades, gestión de contenidos de pago, venta de archivos, galerías de imágenes, formularios de registro extendidos de Joomla!® (incluyendo Captcha y registros de pago), directorios de archivos, envío de artículos, listados con detalles, mostrar registros de la base de datos …hasta el habitual sistema de operaciones CRUD (crear, obtener, actualizar y borrar). Pueden importarse los registros mediante archivos CSV.

Disponible para Joomla!® 3.x / 2.5

Más información

Lanzamiento de BreezingCommerce!

How to reply to submitter email adress? Here is example on how to do so but please be aware to use following solution at your own risk because your email might end up in spam folder.

BreezingForms is using Joomla Mail API to send email. Long ago we had option when users submits the form, Administrator of the form would get email from that user (with actual email address from submitter in FROM filed). That's no longer available as a solution due the high possibility that users will got emails as SPAMS. Since we had a lot of complaints on it we had to change functionality a bit so we added Reply-to field in Admin emails. When email is sent it's always sent from Joomla site (the email you specified in Joomla Global Configuration -> Server Tab -> Mail Settings).

To be able to answer to user who submitted your form you can set, for example, this shortcode {email} into Reply-to field. Note that you need to have exact element in form with name "email". On that way you will be able to reply him when you receive your email.

If you want to mask your email address you can use this shortcode see THIS documentation article. 

To set old email sending behavior, open this file 

administrator/components/com_breezingforms/libraries/crosstec/functions/helpers.php find line 374 and change code below:

 $mail->setSender( array( $prev_from, $fromname ? $fromname : $_fromname ) );

 change to:

 $mail->setSender( array( $from ? $from : $prev_from, $fromname ? $fromname : $_fromname ) );

This way Admin received email will have email address of submitter in FROM field.

Once again, use this solution at your own risk because your email might end up in spam folder.