Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tools for sending email

Tags:

email

eml

I am working on one product which requires extensive testing of emails. I have a set of eml files (test samples) to be sent to the product in bulk.

Can anybody suggest some tool which takes these eml files as input and send out the emails to the given recipients. It can take SMTP address as input.

like image 769
Ravi Chandra Avatar asked Dec 12 '22 00:12

Ravi Chandra


1 Answers

for scripting smtp tests I use swaks

in your case that would be something like

swaks -f [email protected] -t [email protected] -d /path/to/emlfile
like image 151
Gryphius Avatar answered Mar 30 '23 08:03

Gryphius