How can I enable emails for my Sylius projects? (Symfony) - email

I installed Sylius using the documentation:
http://docs.sylius.org/en/latest/book/index.html#installation
Everything seems to work fine as you can see there:
http://sylius.krown.ch/app_dev.php/en_US/
Laurence
4567
Except with emails. I just want to enable default emails, as described there. Unfortunately no email is sent my the website after an order confirmation for example.
I have several projects installed in my server, including Symfony projects. Usually emails work just fine
How can I enable emails for my Sylius projects?

check your config_dev.yml if you have disabled mail delivery for dev environment:
swiftmailer:
disable_delivery: true

Related

Drupal Webform HTML Email fine on Dev box, Text when deployed to server

Using Drupal 9.2.7 and Webform 6.1.2, I got the webform and html email working well on my dev machine. I am running WSL2 on Windows, and using Mailhog to validate the emails without an SMTP server. All looked good.
I copied the project to my test domain on A2Hosting and the emails come through as plain text.
I then installed Mail System and Mime Mail thinking that might be the problem. Mail hog shows nice emails in either the html or text version, but when sent from A2Hosting I see the text version and raw html in the same email. My email client (eM Client) say the email is in html format.
Unfortunately I do not have another place I can test this. Could Mailhog be hiding a configuration problem on my part or is there a chance A2Hostings mail system is mucking it up?
The solution turned out to be quite simple. I removed Mime Mail and Mail System, installed SMTP module, pointed it at an email account in my domain, and everything worked just as expected.

Triggering an email from an H2 database

Currently I am working with the Eclipse kapua (for IOT). I am unable to find the procedure for triggering an email from an H2 database. In the sandbox (eurotech trail version) there are options like email and sms, but in kapua there are no options like that. What is the procedure for sending emails in kapua?
The version hosted by Eurotech in the Sandbox environment is likely to be referred to the previous version, which is Everyware Cloud 4.x.
Not all feature have been ported yet to Kapua and it is currently not possible to do so.

How to set universal password for customers in Magento?

I am running a portal where I require my customers to use default which I will be emailing to them in separate email. Can you advise how I can do this? I am running Magento Community 1.7

How to allow users to send issues via e-mail to MantisBT?

In http://en.wikipedia.org/wiki/Comparison_of_issue-tracking_systems#Input_interfaces it says, that Mantis allows Input via mail.
I checked config_defaults_inc.php for associated settings, but could not find them. How can I allow my users to send issues to my MantisBT instance?
You will have to install the EmailReporting plugin to enable this feature. You can download the plugin from https://github.com/mantisbt-plugins/EmailReporting
Installation of the plugin is straightforward, but configuration can be done only from the plugin page. Please make sure that you read the README before using the plugin.
If you are using MantisHub (MantisBT as a Service), email reporting is included as part of the gold and platinum plans:
http://www.mantishub.com/
You can find the documentation of the feature at:
http://support.mantishub.com/hc/en-us/articles/204273585-Using-Email-Reporting

ColdFusion 10 Can't Verify Exchange 2010 Mail Server

So I've been running CF9 on Linux for a while and using CFMail to send email through a client's Exchange 2010 server for quite a while.
We're attempting to migrate to CF10 on Win2008, IIS7.5. Everything is set and ready to go except I can't get CF10 to verify the mail connection? I've got both mail settings (CF9 and CF10) set the exact same way and can view them open side by side and verify they're identical. However, while the CF9 verifies successfully the CF10 system fails??
I tried sending through CFMail tags while specifying the server credentials and see this in the CF10 log:
"javax.mail.AuthenticationFailedException: No authentication mechansims supported by both server and client"
What does this mean? I know my authentication credentials are correct because I'm able to connect in CF9.
I've turned off all firewalls and still nothing. So, I then tried installing CF10 on my Mac laptop. It, too, will not verify the mail connection!
Is there a known problem with CF10 connecting to an Exchange mail server?
Any ideas?
I "solved" this.
I could find little online and received no comments to this thread. No combination of settings I tried would work and I have no access to the client's mail server. The person who runs that server couldn't run a lemonade stand so no help there.
Then I stumbled across this page. Nothing to do with ColdFusion but seemed like a similar issue.
Recent changes in the JavaMail API has changed certain authentication
defaults and sometimes will create an authentication error with some
Exchange Server environments dependent on the configuration.
I'd never put much thought into CFMail because it was always drop dead simple and simply worked. Focusing on this link's Resolution 2 (ie replace the mail.jar with an older version). I wondered if CF used JavaMail and if I could downgrade CFMail? I cracked open CF's mail.jar file and found that CFMail does, indeed, use the JavaMail API. So, I then checked the ColdFusion docs to see if any new features were added to CFMail between CF9 and CF10. None.
So, I swapped out the mail.jar file from my CF9 install to CF10 and restarted. Boom! Everything worked immediately. As far as I can tell I've had no compatibility issues to report.
Swapping the mail.jar did not work for me. However, adding the following to JVM arguments
-Djava.net.preferIPv4Stack=true
worked for me. Please refer to the following article
Java Mail mystery - SMTP blocked?
posted by another user