项目作者: franklintimoteo

项目描述 :
Modern Unsolicited Commercial Email
高级语言: HTML
项目地址: git://github.com/franklintimoteo/MUCE.git
创建时间: 2019-11-29T13:42:43Z
项目社区:https://github.com/franklintimoteo/MUCE

开源协议:MIT License

下载





Modern Unsolicited Commercial Email




Initialize the database

```shell script
flask init-db

  1. #### Create admin login
  2. ```shell script
  3. flask init-admin -u username -p password

Add new spam templates

  1. Create templates named with prefix spam_
  2. Example: spam_smartphone5g.html
  3. Put templates on app/templates/ directory.

Configure Template

Add {{ url_coupon }} on html template

  1. Example:
  2. <html>
  3. <head><title>Coupon Paypal</title></head>
  4. <body>
  5. <a href="{{ url_coupon }}">Redeem coupon</a>
  6. </body>
  7. </html>

Configure your mail

```shell script
app.init.py - update with your mail “SERVER”, “PORT”, “SENDER”, “DDNS”

(Windows)
set MAIL_SENDER=youcompleteemail@domain.com
set DDNS=muce.ddns.net
set MAIL_USERNAME=username
set MAIL_PASSWORD=p@sSWorD
```