Account created on 18 October 2012, over 11 years ago
#

Recent comments

πŸ‡¬πŸ‡·Greece alexpertsi

Also an easy way to copy-reuse existing fields, is here Webforms>Build>Source Elements (YAML)
You could easy copy and paste the YAML code (also multiple fields)

πŸ‡¬πŸ‡·Greece alexpertsi

PHPMailer SMTP ( https://www.drupal.org/project/phpmailer_smtp β†’ )
It worked for me too! :)
Don't forget to follow its configuration instructions!
(e.q. the https://www.drupal.org/project/mailsystem β†’ installation)

πŸ‡¬πŸ‡·Greece alexpertsi

Use this javascript code

if(document.querySelector('.name-field-smedia')){
    let sliders = document.querySelectorAll('.name-field-smedia');
    for (var i = 0; i < sliders.length; i++) {
      let slider = new Flickity(sliders[i], {
        wrapAround: true,
        pageDots: false,
        imagesLoaded: true
      });
    }
 }
πŸ‡¬πŸ‡·Greece alexpertsi

I had the same problem.

Go to -> Configuration -> Mailer -> Transport (/admin/config/system/mailer/transport)
Add Transport type (Transport tab) -> SMTP
Fill in the required input fields -> Save
and after click -> edit -> Set as default

After this steps my drupal send mails via "Drupal Symfony Mailer" module

Production build 0.69.0 2024