2021-11-06T14:27:12.png

源码简介

Sendy是自托管的电子邮件通讯应用程序,可以利用本地服务器进行邮件推送,也可以使用Amazon Simple Email Service (SES)的服务,Amazon Simple Email Service (SES)有免费配额可供使用。

在线演示

https://sendy.co/demo/login

功能特性

Send newsletters 100x cheaper
Beautiful reports
White labeled client accounts
Autoresponders
List segmentation
List & subscriber management
Custom fields
Bounce, complaint & unsubscribe handling
Third party integrations & Zapier
Even more features! ?
Setup custom domains
GDPR features only available in Sendy
Translation ready
Two Factor Authentication
Mass add, delete or unsubscribe users
Ready-to-use subscription form
Fast multi-threaded sending
Store templates
Google Analytics support
Google reCAPTCHA support
Import lists without re-confirmation
Send emails with attachments
Blacklists for emails and/or domains
Use any other SMTP services
Use personalization tags
Include or exclude lists to send
Single or double opt-in & opt-out
Adjust sending rate

安装说明

1、下载解压缩,上传Script文件夹内的全部内容到服务器。
2、编辑Scriptincludesconfig.php

<?php 
    //----------------------------------------------------------------------------------//    
    //                               COMPULSORY SETTINGS
    //----------------------------------------------------------------------------------//
    
    /*  Set the URL to your Sendy installation (without the trailing slash) */
    define('APP_PATH', 'http://tester.loc');//网站地址
    
    /*  MySQL database connection credentials (please place values between the apostrophes) */
    $dbHost = 'localhost'; //数据库服务器地址
    $dbUser = 'root'; //数据库用户名
    $dbPass = ''; //数据库密码
    $dbName = 'sendy'; //数据库名
    
    
    //----------------------------------------------------------------------------------//    
    //                                  OPTIONAL SETTINGS
    //----------------------------------------------------------------------------------//    
    
    /* 
        Change the database character set to something that supports the language you'll
        be using. Example, set this to utf16 if you use Chinese or Vietnamese characters
    */
    $charset = 'utf8';
    
    /*  Set this if you use a non standard MySQL port.  */
    $dbPort = 3306;    
    
    /*  Domain of cookie (99.99% chance you don't need to edit this at all)  */
    define('COOKIE_DOMAIN', '');
    
    //----------------------------------------------------------------------------------//
?>

保存上传
3、打开yourdomain.tld/_install.php 执行安装
4、输入要求的信息点击完成安装。

下载地址

此处内容需要评论回复后(审核通过)方可阅读。

程序说明

官方默认没有带伪静态规则
我这边附了一份

Options +FollowSymLinks
Options -Multiviews

RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([a-zA-Z0-9-]+)$ $1.php [L]

# Link tracker
RewriteRule ^l/([a-zA-Z0-9/]+)$ l.php?i=$1 [L]

# Open tracker
RewriteRule ^t/([a-zA-Z0-9/]+)$ t.php?i=$1 [L]

# Web version
RewriteRule ^w/([a-zA-Z0-9/]+)$ w.php?i=$1 [L]

# unsubscribe
RewriteRule ^unsubscribe/(.*)$ unsubscribe.php?i=$1 [L]

# subscribe
RewriteRule ^subscribe/(.*)$ subscribe.php?i=$1 [L]

apache用户在程序根目录建立.htaccess文件并键入上面的内容。

Last modification:November 7, 2021
如果觉得我的文章对你有用,请随意赞赏