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
- Host: GitHub
- URL: https://github.com/willdev12/spammerbot
- Owner: WillDev12
- Created: 2023-04-25T00:28:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-25T14:18:09.000Z (about 3 years ago)
- Last Synced: 2025-05-08T22:15:51.706Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 17.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.