An open API service indexing awesome lists of open source software.

https://github.com/willdev12/spammerbot

A GS Gmail spammer to annoy your friends
https://github.com/willdev12/spammerbot

Last synced: 10 months ago
JSON representation

A GS Gmail spammer to annoy your friends

Awesome Lists containing this project

README

          


⚠️ WARNING: PLEASE SEE USAGE POLICIES BEFORE USING THIS PROGRAM ⚠️



Spammerbot









## What it does
Rapidly sends emails to another inbox using the Gmail API.[^1]


## How to install?

1. Open new Google Apps Script
2. Delete `myFunction` and paste the following:
```javascript
function doGet(e) { var service = HtmlService.createHtmlOutput(UrlFetchApp.fetch("https://raw.githubusercontent.com/WillDev12/Spammerbot/main/src/index.html")).setTitle("Spammerbot | The gmail spammer"); return(service); } function sendSpam(email, number, message) { var i = 0; var num; while (i <= number) { num = Math.floor((Math.random()*1000000000000)+1); MailApp.sendEmail(email, num, message); i++; } }
```
3. Deploy as web app and open the url!



# Like content like this?

Check out my [profile](https://github.com/WillDev12) or share it! (It means a lot to me)

```
https://github.com/WillDev12
```

[^1]: Sadly due to the fact that logging into an external account cannot be performed in Google Apps Script, every email sent will be delivered from your own personal account.