Skip to content

hxcde/anonmail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Anonmail


Send anonymous emails inside company

  • I built this project to be able to send anonymous emails to the works council within the company.
  • The emails go from an anonymous email address to a predefined one.

How to set it up?

  • You need GIt, PHP and Apache installed (example for Ubuntu or Debian based).
apt-get update && apt-get install git php php-mail apache2 -y
systemctl enable apache2 && systemctl start apache2
  • Clone the repository
git clone https://git.moelle.space/hxcde/anonmail.git

Move the files to webroot

mv anonmail/* /var/www/html/

Edit in contact-form-process.php

$email_to = "recipient@example.de";
$email = 'sender@example.de';

Change the images as needed