Added SendPulse links
This commit is contained in:
parent
65f682bd8f
commit
9946f70992
5 changed files with 47 additions and 15 deletions
BIN
public/images/sendpulse.jpg
Normal file
BIN
public/images/sendpulse.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
|
@ -211,11 +211,11 @@ CREATE TABLE `settings` (
|
|||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `key` (`key`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4;
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (1,'smtp_hostname','localhost');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (1,'smtp_hostname','smtp-pulse.com');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (2,'smtp_port','465');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (3,'smtp_encryption','TLS');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (4,'smtp_user','username');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (5,'smtp_pass','password');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (4,'smtp_user','');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (5,'smtp_pass','');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (6,'service_url','http://localhost:3000/');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (7,'admin_email','admin@example.com');
|
||||
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (8,'smtp_max_connections','5');
|
||||
|
|
|
@ -14,6 +14,11 @@ CREATE TABLE `import_failed` (
|
|||
CONSTRAINT `import_failed_ibfk_1` FOREIGN KEY (`import`) REFERENCES `importer` (`id`) ON DELETE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
# Temporary additions
|
||||
UPDATE `settings` SET `value`='smtp-pulse.com' WHERE `key`='smtp_hostname' LIMIT 1;
|
||||
UPDATE `settings` SET `value`='' WHERE `key`='smtp_user' LIMIT 1;
|
||||
UPDATE `settings` SET `value`='' WHERE `key`='smtp_pass' LIMIT 1;
|
||||
|
||||
# Footer section
|
||||
LOCK TABLES `settings` WRITE;
|
||||
INSERT INTO `settings` (`key`, `value`) VALUES('db_schema_version', @schema_version) ON DUPLICATE KEY UPDATE `value`=@schema_version;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="media">
|
||||
<div class="media-left">
|
||||
<a href="http://www.iredmail.org/">
|
||||
<img class="media-object" src="/images/iredmail-logo-red-114.png" alt="...">
|
||||
<img class="media-object" src="/images/iredmail-logo-red-114.png" alt="iRedMail">
|
||||
</a>
|
||||
</div>
|
||||
<div class="media-body">
|
||||
|
@ -12,14 +12,19 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<h3>Donate to author</h3>
|
||||
<p>If you really like Mailtrain then you can donate to the Mailtrain project to support the further development of it. You can donate directly with Paypal or if you prefer Bitcoin, then my wallet address is <code>15Z8ADxhssKUiwP3jbbqJwA21744KMCfTM</code>.</p>
|
||||
|
||||
<p>
|
||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DB26KWR2BQX5W" class="btn btn-info">Donate using PayPal</a>
|
||||
</p>
|
||||
|
||||
<div class="col-md-4">
|
||||
<h3> </h3>
|
||||
<div class="media">
|
||||
<div class="media-left">
|
||||
<a href="https://sendpulse.com/?utm_source=mailtrain&utm_medium=logo">
|
||||
<img class="media-object" src="/images/sendpulse.jpg" alt="SendPulse">
|
||||
</a>
|
||||
</div>
|
||||
<div class="media-body">
|
||||
<h4 class="media-heading"><a href="https://sendpulse.com/?utm_source=mailtrain&utm_medium=logo">SendPulse</a></h4> A reliable SMTP server, easy integration, and 12,000 messages a month free
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@ -40,10 +45,27 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-8">
|
||||
<h3>Donate to author</h3>
|
||||
<p>If you really like Mailtrain or your business benefits from it financially then I would really appreciate a small donation to keep the Mailtrain development engines running. You can either use Bitcoin or PayPal for donations. My Bitcoin wallet is <code>15Z8ADxhssKUiwP3jbbqJwA21744KMCfTM</code></p>
|
||||
|
||||
<p>
|
||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DB26KWR2BQX5W" class="btn btn-info">or donate using PayPal</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h2>RSS Campaigns</h2>
|
||||
<p>Setup Mailtrain to <a href="https://github.com/andris9/mailtrain/wiki/RSS-Campaigns">track RSS feeds</a> and if a new entry is detected in a feed then Mailtrain auto-generates a new campaign using entry data as message contents and sends it to selected subscribers.</p>
|
||||
<p>Setup Mailtrain to <a href="https://github.com/andris9/mailtrain/wiki/RSS-Campaigns">track RSS feeds</a> and if a new entry is detected in a feed then Mailtrain auto-generates a new campaign using entry data as message contents and sends it to
|
||||
selected subscribers.</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h2>GPG Encryption</h2>
|
||||
|
@ -62,7 +84,7 @@
|
|||
</div>
|
||||
<div class="col-md-4">
|
||||
<h2>Send via any provider</h2>
|
||||
<p>Amazon SES, SparkPost, SendGrid, Mailgun – you name it. You can use any provider that supports SMTP protocol to send out your newsletters. Bounce and complaints handling via webhooks is supported for SES, SparkPost, SendGrid and Mailgun.</p>
|
||||
<p>Mailtrain recommends <a href="https://sendpulse.com/?utm_source=mailtrain&utm_medium=providerlist">SendPulse</a> even though you can use any provider that supports SMTP protocol to send out your newsletters. Bounce and complaints handling via webhooks is supported for SES, SparkPost, SendGrid and Mailgun, also for Postfix and ZoneMTA.</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h2>Trigger based automation</h2>
|
||||
|
|
|
@ -184,9 +184,14 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="pull-right">
|
||||
<button type="submit" id="verify-button" form="smtp-verify" class="btn btn-info" data-loading-text="Checking..."><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> Check SMTP config</button>
|
||||
</div>
|
||||
<div class="col-sm-offset-2 col-xs-6">
|
||||
<p class="form-control-static">Don't have an SMTP account yet? Create a free SendPulse account <a href="https://sendpulse.com/?utm_source=mailtrain&utm_medium=settings">here</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
|
|
Loading…
Reference in a new issue