2023-03-28 13:27:24 +02:00
|
|
|
# Anonmail
|
2023-03-29 13:55:19 +02:00
|
|
|
<img align="right" src="https://user-images.githubusercontent.com/30338980/228526710-b8f19c39-f3e7-41c7-9354-630b1bea1f86.png" width="500" />
|
|
|
|
<br>
|
2023-03-28 13:11:41 +02:00
|
|
|
<img src="https://raw.githubusercontent.com/hxcde/anonmail/main/logo1.png" width="70" />
|
2023-03-28 13:11:50 +02:00
|
|
|
|
2023-03-28 12:59:52 +02:00
|
|
|
### Send anonymous emails inside company
|
2023-03-28 13:00:57 +02:00
|
|
|
- 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.
|
2023-03-29 13:55:19 +02:00
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2023-03-28 13:05:46 +02:00
|
|
|
### How to set it up?
|
2023-03-28 13:12:24 +02:00
|
|
|
- You need GIt, PHP and Apache installed (example for Ubuntu or Debian based)
|
2023-03-28 12:29:07 +02:00
|
|
|
```bash
|
2023-03-28 13:15:26 +02:00
|
|
|
apt-get update && apt-get install git php php-mail apache2 -y
|
2023-03-28 13:17:01 +02:00
|
|
|
systemctl enable apache2 && systemctl start apache2
|
2023-03-28 13:06:52 +02:00
|
|
|
```
|
|
|
|
- Clone the repository
|
|
|
|
```bash
|
2023-03-28 12:29:07 +02:00
|
|
|
git clone https://github.com/hxcde/anonmail.git
|
|
|
|
```
|
2023-03-28 13:06:52 +02:00
|
|
|
Move the files to webroot
|
2023-03-28 12:30:46 +02:00
|
|
|
```bash
|
|
|
|
mv anonmail/* /var/www/html/
|
|
|
|
```
|
2023-03-28 12:34:12 +02:00
|
|
|
Edit in contact-form-process.php
|
2023-03-28 12:33:28 +02:00
|
|
|
```bash
|
2023-03-28 13:01:50 +02:00
|
|
|
$email_to = "recipient@example.de";
|
|
|
|
$email = 'sender@example.de';
|
2023-03-28 12:33:28 +02:00
|
|
|
```
|
2023-03-28 12:56:47 +02:00
|
|
|
Change the images as needed
|
2023-03-29 13:55:19 +02:00
|
|
|
|
|
|
|
|