前言介紹
- 這款 WordPress 外掛「Mail Subscribe List」是 2012-12-02 上架。
- 目前有 5000 個安裝啟用數。
- 上一次更新是 2023-08-08,距離現在已有 635 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 3.0 以上版本才可以安裝。
- 有 60 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
webfwd |
外掛標籤
list | mail | email | subscribe | newsletter |
內容簡介
查看最新的 WordPress 優惠以用於您的網站。
這是一個簡單的外掛,允許訪客在您的網站上輸入他們的姓名和電子郵件地址,然後訪客詳細信息將添加到訂閱者列表,可在 WordPress 管理區域中查看和修改。
這個外掛不僅可以用於郵件列表訂閱,也可用於收集訪問您網站的電子郵件地址和/或人名。
這個名字/電子郵件表單不僅可以進行自定義,還可以通過使用“訂閱小部件”(Subscribe Widget)、WordPress 短碼 [smlsubform] 或從 WordPress 主題調用 php 函數來顯示在任何 WordPress 頁面上。
我開發這個外掛是因為我找不到任何簡單地允許用戶提交他們的姓名和電子郵件地址到簡單列表中(可在 WordPress 管理中心查看),我找到的所有外掛都有很多額外功能,如第三方集成、大量郵件和雙重確認,我的客戶都不需要這些功能。
額外選項
我開發了一些可自定義的選項,可讓您更改外掛的顯示方式。
以下是每個選項的說明:
“prepend” -> 在表單頂部內部添加一個文字段落。
“showname” -> 如果為 true,則會顯示用於捕獲用戶名稱的名稱標籤和輸入欄位。
“nametxt” -> 在名稱輸入欄位左側顯示的文本。
“nameholder” -> 作為占位符在名稱輸入框中顯示的文本。
“emailtxt” -> 在電子郵件輸入欄位左側顯示的文本。
“emailholder” -> 作為占位符在電子郵件輸入框中顯示的文本。
“showsubmit” -> 如果為 true,則會顯示提交按鈕,需要提交表單。
“submittxt” -> 顯示在表單提交按鈕上的文本/值。
“jsthanks” -> 如果為 true,則會顯示 JavaScript 提示訊息,而不是表單上方的段落。
“thankyou” -> 當有人訂閱時顯示的感謝消息。(如果為空,將不顯示)
額外選項 - 如何使用 (短碼方法)
只需將短碼代碼放入您的 WordPress 頁面中即可使用,以下是短碼範例。
[smlsubform prepend="" showname=true nametxt="Name:" nameholder="Name..." emailtxt="Email:" emailholder="Email Address..." showsubmit=true submittxt="Submit" jsthanks=false thankyou="Thank you for subscribing to our mailing list"]
額外選項 - 如何使用 (PHP 方法)
將以下 PHP 代碼置於 WordPress 主題中即可使用 PHP 方法,以下是您模板的 php 代碼範例。
$args = array(
'prepend' => '',
'showname' => true,
'nametxt' => 'Name:',
'nameholder' => 'Name...',
'emailtxt' => 'Email:',
'emailholder' => 'Email Address...',
'showsubmit' => true,
'submittxt' => 'Submit',
'jsthanks' => false,
'thankyou' => 'Thank you for subscribing to our mailing list'
);
echo smlsubform($args);
原文外掛簡介
Check out the latest WordPress deals for your site.
This is a simple plugin that allows visitors to enter their name and email address on your website, the visitors details are then added to the subscribers list which is available to view and modify in the WordPress admin area.
This plugin can be used not only for Mailing List subscriptions but can be used generally for collecting email address and/or peoples names that are visiting your website.
The name/email form can not only be customised but can also be displayed on any WordPress page by using either the ‘Subscribe Widget’, WordPress shortcode [smlsubform] or from your WordPress theme by calling the php function.
I developed this plugin as I could not find any plugin that simply allows users to submit their name and email address to a simple list viewable in the WordPress admin, all the plugins that I found had lots of extra features such as 3rd party integration, mass emailing and double opt-in, my clients do not need any of these features.
Extra Options
I have developed some customizable options that allow you to change the way the plugin is displayed.
Below is an explanation of what each option does:-
“prepend” -> Adds a paragraph of text just inside the top of the form.
“showname” -> If true, this with show the name label and input field for capturing the users name.
“nametxt” -> Text that is displayed to the left of the name input field.
“nameholder” -> Text that is displayed inside the name input box as a place holder.
“emailtxt” -> Text that is displayed to the left of the email input field.
“emailholder” -> Text that is displayed inside the email input box as a place holder.
“showsubmit” -> If true, this with show the submit button, return required to submit form.
“submittxt” -> Text/value that will be displayed on the form submit button.
“jsthanks” -> If true, this will display a JavaScript Alert Thank You message instead of a paragraph above the form.
“thankyou” -> Thank you message that will be displayed when someone subscribes. (Will not show if blank)
Extra Options – How to Use (Short Code Method)
Short codes can be used simply putting the code into your wordpress page, here is an example of the shortcode in use.
[smlsubform prepend="" showname=true nametxt="Name:" nameholder="Name..." emailtxt="Email:" emailholder="Email Address..." showsubmit=true submittxt="Submit" jsthanks=false thankyou="Thank you for subscribing to our mailing list"]
Extra Options – How to Use (PHP Method)
The PHP method can be used by putting the following PHP code into your WordPress theme, here is an example of php code for your template.
$args = array(
'prepend' => '',
'showname' => true,
'nametxt' => 'Name:',
'nameholder' => 'Name...',
'emailtxt' => 'Email:',
'emailholder' => 'Email Address...',
'showsubmit' => true,
'submittxt' => 'Submit',
'jsthanks' => false,
'thankyou' => 'Thank you for subscribing to our mailing list'
);
echo smlsubform($args);
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Mail Subscribe List」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0 | 1.1 | 2.0 | 2.1 | 1.0.1 | 1.1.1 | 1.1.2 | 2.0.1 | 2.0.2 | 2.0.3 | 2.0.4 | 2.0.5 | 2.0.6 | 2.0.7 | 2.0.8 | 2.0.9 | 2.1.1 | 2.1.2 | 2.1.3 | 2.1.4 | 2.1.5 | 2.1.6 | 2.1.7 | 2.1.8 | 2.1.9 | trunk | 2.1.10 |
延伸相關外掛(你可能也想知道)
WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin 》WordPress Mail SMTP外掛, 如果您的WordPress網站無法正確發送電子郵件,您並不孤單。超過三百萬個網站使用WP Mail SMTP可靠地發送電子郵件。, 我們的目標是...。
MC4WP: Mailchimp for WordPress 》讓訪客訂閱您的電子報應該很容易。透過這款外掛,現在終於可以輕鬆做到了。 這個外掛可幫助您在 Mailchimp 中擴展您的電子郵件列表。您可以使用它來創建外觀...。
Easy WP SMTP – WordPress SMTP and Email Logs: Gmail, Office 365, Outlook, Custom SMTP, and more 》您的 WordPress 電子郵件無法正常傳送嗎?, 安裝 Easy WP SMTP,即可解決您的電子郵件傳送問題。, Easy WP SMTP 允許您配置並透過 4 個交易郵件傳送者或 SMTP...。
Post SMTP – WP SMTP Plugin with Email Logs and Mobile App for Failure Notifications – Gmail SMTP, Office 365, Brevo, Mailgun, Amazon SES and more 》即時演示 | 擴充功能, WordPress郵件SMTP外掛程式, Post SMTP是一款下一代WP郵件SMTP外掛程式,可協助並改善您的WordPress網站郵件可遞送性處理。, 易於使用...。
Mailchimp for WooCommerce 》加入 Mailchimp 的 1,700 萬客戶,這是全球最大的行銷自動化平台,以發展您的電子商務行銷策略。藉由官方 Mailchimp for WooCommerce 整合,您的客戶及其購買...。
Creative Mail – Easier WordPress & WooCommerce Email Marketing 》Creative Mail是專門為WordPress和WooCommerce設計的電子郵件外掛。, 我們智能(且超級有趣的)郵件編輯器簡化了郵件營銷活動的創建過程,並將WordPress博客...。
WP Mail Logging 》WP Mail Logging 是最受歡迎的 WordPress 或 WooCommerce 郵件記錄外掛程式。啟用後立即運作,無需任何設定。, 為什麼要記錄 WordPress 或 WooCommerce 發送...。
SureMail – SMTP and Email Logs Plugin with Amazon SES, Postmark, and Other Providers 》```html, , , ,
SureMails WordPress 外掛總結 , , , ,...。Site Mailer – SMTP Replacement, Email API Deliverability & Email Log 》總結: 使用 Site Mailer 外掛幫助解決 WordPress 網站無法寄送郵件、郵件進入垃圾郵件中或無法送達的問題。透過此工具,您可以輕鬆提升郵件管理,確保郵件準...。
Manage Notification E-mails 》這個外掛可以讓您開啟或關閉不同的 WordPress 通知電子郵件,例如 WordPress 傳送到管理員和使用者的新使用者和密碼更改通知選項。與許多其他外掛完美結合!,...。
Newsletter, SMTP, Email marketing and Subscribe forms by Brevo (formely Sendinblue) 》Sendinblue 的官方 WordPress 外掛程式是一個功能強大的全方位電子郵件行銷外掛程式。以下是一些概觀:, , 訂閱表單 – 建立自訂訂閱表單,輕鬆整合到文章、頁...。
Kadence WooCommerce Email Designer 》這個外掛讓你輕鬆自訂 WooCommerce 交易郵件的預設樣板。使用內建的 WordPress 自訂器即可即時視覺化編輯設計。在不編輯程式碼的情況下自訂每個 WooCommerce ...。
Check & Log Email – Easy Email Testing & Mail logging 》需要一個工具,讓你可以輕鬆地記錄和查看 WordPress 發送的所有電子郵件嗎? Check & Log 可能就是此問題的解決方案。, 此 WordPress 外掛可幫助你為審計目的...。
Contact Form 7 Extension For Mailchimp 》WordPress Extension for Mailchimp (Chimpmatic Lite)可將Contact Form 7與Mailchimp Audience集成。使用Mailchimp的最新API自動將Contact Form 7提交的信息...。
Email Log 》Email Log 是一個 WordPress 外掛,可以輕鬆地記錄和查看所有從 WordPress 發送的電子郵件。, 這在調試 WordPress 網站中與電子郵件相關的問題或存儲發送的電...。