Newer
Older
EmailSender / README.md
0xRoM on 8 Sep 2023 1001 bytes first commit
Email Sender
===============

I wanted a quick little GUI to send emails from any address on a server that supported attachments and headers.

![email sender main screen](screenshot.png)

# <u>Installing</u>
1) Clone the repo into the correct folder

``` 
  $> cd /var/www/html/
  $> git clone https://rossmarks.uk/git/git/0xRoM/WSSSnoop.git 
  $> cd EmailSender
```

2) Create the uploads folder for attachments and ensure it is writable by the webserver

``` 
  $>  mkdir uploads && chmod 777 uploads
```

3) Edit submit.php to have the correct upload folder and password of your choice
```
  $knownPasswordHash = '098f6bcd4621d373cade4e832627b4f6'; // test == 098f6bcd4621d373cade4e832627b4f6
  $uploadDirectory = 'uploads/'; // Replace with your desired upload directory
```  
  
4) Browse to the correct URL to start sending emails

# <u>Information</u>

Uses the following PHP script to do most of the heavy lifting:

[stlewis's mail() wrapper](https://github.com/stlewis/Mail){:target="_blank"}