Questions tagged [mailcatcher]

MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface.

MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface.

Features

  • Shows HTML, Plain Text and Source version of messages, as applicable.
  • Rewrites HTML enabling display of embedded, inline images/etc and open links in a new window.
  • Lists attachments and allows separate downloading of parts.
  • Download original email to view in your native mail client(s).
  • Command line options to override the default SMTP/HTTP IP and port settings.
  • Mail appears instantly if your browser supports WebSockets, otherwise updates every thirty seconds.
  • Runs as a daemon run in the background.
  • Sendmail-analogue command, catchmail, makes using mailcatcher from PHP a lot easier.
  • Written super-simply in EventMachine, easy to dig in and change.
  • Keyboard navigation between messages

Links

61 questions
2
votes
2 answers

Using mailcatcher on Cloud9 - port overlaps

I'm trying to confirm mailcatcher as described in the following: [Using mailcatcher in cloud9 ide which asks me to do mailcatcher --http-port $PORT --ip $IP and you can access it from which would allow me to access mailcatcher on…
SeoKim
  • 53
  • 1
  • 3
2
votes
1 answer

Mailcatcher not working in Rails

I am trying get mailcatcher working with my Rails 3.2.x app. Added mailcatcher gem and bundled, and... development.rb config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { address: "localhost", port: 1025, …
Mark Locklear
  • 5,044
  • 1
  • 51
  • 81
2
votes
0 answers

Mailcatcher not working with Spree and Vagrant

I am currently using Spree 1-3-stable and trying to use Mailcatcher to catch all test emails sent in a development environment. I am also running the project in a Ubuntu virtual machine using Vagrant (w/ VirtualBox). When I run Mailcatcher, the web…
pphan98
  • 21
  • 2
1
vote
1 answer

Laravel with mailcatcher thrown exception Cannot assign requested address

I faced with error when use mailcatcher with laravel ( "laravel/framework": "^8.54",) "message": "Connection could not be established with host localhost :stream_socket_client(): unable to connect to localhost:8003 (Cannot assign requested…
shuba.ivan
  • 3,824
  • 8
  • 49
  • 121
1
vote
1 answer

Catch gmail acount emails with Mailcacther

I am using Gmail as a mailing server for testing purposes on dev docker. I had enabled MSMTP on docker RUN echo "sendmail_path=/usr/bin/msmtp -t" >> /usr/local/etc/php/conf.d/sendmail.ini msmtprc configuration tls on auth on host…
Stevan Tosic
  • 6,561
  • 10
  • 55
  • 110
1
vote
2 answers

Can't install mailcatcher

I installed gem by sudo apt install rubygem. After that, I tried to install mailcatcher by sudo gem install mailcatcher but encountered some errors. You might have to install separate package for the ruby development environment, ruby-dev or…
Rajesh Chaudhary
  • 894
  • 2
  • 11
  • 17
1
vote
1 answer

Symfony Swiftmail with docker mailcatcher

I have a Symfony app (v4.3) running in an docker setup. This setup also has a container for the mailcatcher. No matter how I try to set the MAILER_URL in the .env file no mail shows up in the mailcatcher. If I just the call regular PHP mail()…
user13882309
  • 11
  • 1
  • 2
1
vote
2 answers

Get email in mailcatcher via cy.request

I'm trying to get email catched by Mailcatcher in Cypress test. Mailcatcher runs at localhost:1080, and my app is running on port 3000. So far I cannot simply use cy.visit('localhost:1080) because I am already visiting my app via cy.visit() (second…
1
vote
1 answer

Laravel - Mailcatcher shows a 'This site can’t be reached' page

I've just installed Mailcatcher for a Laravel project I'm working on, and I'm using Virtual Box and Vagrant to run the application locally. When I run the command mailcatcher on my terminal I get: Starting MailCatcher ==>…
Michael Emerson
  • 1,774
  • 4
  • 31
  • 71
1
vote
1 answer

Docker connect Mail catcher with WordPress

I want to set a sendmail_path in WordPress' container and use a sendmail provided by another container. In my case its MailHog. So this is my docker-compose: version: '2' services: wordpress: image: wordpress links: -…
Kubitomakita
  • 63
  • 1
  • 7
1
vote
0 answers

Using Mailcatcher on XAMPP (do not receive mail)

I do have a problem with mailcatcher. My php.ini: [mail function] ; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury SMTP = localhost smtp_port = 1025 mail.php: if( mail('test@example.com', 'My Subject', 'test'…
Kintamasis
  • 265
  • 6
  • 27
1
vote
1 answer

Mailcatcher Error: ~~> ERROR: Something's using port 1025. Are you already running MailCatcher?

I have installed the gem mailcatcher. And when I want to run the mailcatcher I have this error message: $ mailcatcher /Users/romenigld/.rvm/gems/ruby-2.2.3@global/extensions/x86_64-darwin-14/2.2.0-static/bigdecimal-1.2.7/bigdecimal.bundle: warning:…
rld
  • 2,603
  • 2
  • 25
  • 39
1
vote
2 answers

I don't get confirm mail

I have a problem with devise mail confirm. I adding mailcatcher, that work correct: Thu, 24 Sep 2015 05:49:50 +0300 From: please-change-me-at-config-initializers-devise@example.com Reply-To:…
1
vote
1 answer

mailcatcher is not receiving mails

I'm using mailcatcher and spree. I input the necessary items into the Mail Method Setting form in the admin panel and click send test mail. My domain and host is set to my localserver ip and my SMTP port is 1025. I see my terminal generates an…
hammies
  • 1,344
  • 2
  • 22
  • 46
1
vote
1 answer

MailCatcher is not sending emails

I'm using MailCatcher with Rails, but is is not working. On rails console, I did: > Signup.confirm_email(User.second).deliver And I got that: Rendered signup/confirm_email.html.erb (2.2ms) Rendered signup/confirm_email.text.erb…
sadtroll
  • 191
  • 4
  • 17