I want to simulate email send/receive on a Laravel 8.x app, something like using Insomnia or Postman to test REST feature by sending to an endpoint. What I want to do is to send the email to the app, and debug the app processing the email it received, all of them running on a local VM (CentOS 8), without having to send emails using my actual account.
Not much info in the Internet, and results are usually for sending out from Laravel app. Could it be that my scenario is not possible?
if I got your requirements correctly, you could use a mail server like Mailu
run an email server on a docker container
connect your laravel app to the mail server using SFTP
send your email details to your laravel app via HTTP
process your email content or debug it in laravel
send the email to the mail server
or If you received an email in that mailbox, you can get the mails with laravel and process them.
I hope this help.
Not sure if I understand, but you can use Mailhog which is an email-testing tool with a fake SMTP server underneath. MailHog runs a super simple SMTP server that hogs outgoing emails sent to it.
All outgoing emails will be trapped by MailHog, being pretty useful in order to avoid sending emails accidentally when developing.
I've asked (and finally found a solution) in this question:
Auto boot MailHog on Ubuntu 20.04 about how to use it in a staging evironment, but running locally with no need to auto start the service is even easier.
There are tons of tutorials about how to implement MailHog and Laravel.
I am having my html template with two contact form. I am bit confused how can i make the mail functions in windows server.
Currently my client running with windows server supported by IIS v8.0 and he is not ready to install php to his server .
Smtp is also turned on now .
Can any let me know how can i make mail function works in windows server.
I want to send emails from my Pc(Localhost) to external servers like gmail,hotmail or yahoomail.
There are option to send email using Gmail/Yahoomail SMTP settings but i do not want to use any SMTP setting because of there daily limits.
And we also do not want to buy any email/newsletter services.
We want to create it Fully Free in our PC(Localhost).
Please tell us how can do it using Xampp and any open-source softwares.
I want to use Mercury Mail as a mail server in a local network. I managed to set up everything and I am able to send mails from one client to another in this local network via the Mercury Mail server (part of Xampp) on Windows 7. The whole environment is set up locally, i.e. communication is only between local users and not with the outside world (internet).
What I want now: When a local user sends a mail to another local user, I want them to SMTP authenticate first. From Mercury Mail Admin Panel SMTP Server, I don't see such option. Could you point me to the documentation or guide me on how to do it? Thanks a lot.
I want to write a application that can send files from server to client:
using windows Remote Desktop login the server from the client.
the application on the server could reversely connect to the client and send several files to the client using the same port as the Remote Desktop.
A application on the client can receive the files.
can't find any solution to do that kind thing. Any idea??
You can do this using Remote Desktop virtual channels. See this blog post for a sample virtual channel application.