-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
246 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Report missing/incorrect SMTP settings | ||
about: Report issues with the Quick Config SMTP chooser. | ||
title: '' | ||
labels: smtp-setting | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is this a new suggestion or an edit to an existing option?** | ||
|
||
|
||
**What is your update/replacement suggestion?** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
name: Per-commit CI Test | ||
on: | ||
push: | ||
branches: [ main ] | ||
branches: | ||
- main | ||
- develop | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
/** | ||
* Simple email configuration within WordPress. | ||
* | ||
* @package sb-simple-smtp | ||
* @author soup-bowl <[email protected]> | ||
* @license MIT | ||
*/ | ||
|
||
namespace wpsimplesmtp; | ||
|
||
/** | ||
* Configuration applicable to the quick config segment. | ||
*/ | ||
class QuickConfig { | ||
/** | ||
* Returns an array of possible SMTP configuration options. | ||
* | ||
* @return array | ||
*/ | ||
public static function settings() { | ||
return [ | ||
[ | ||
'name' => 'Gmail', | ||
'server' => 'smtp.gmail.com', | ||
'port' => '587', | ||
'authentication' => true, | ||
'encryption' => 'tls', | ||
], | ||
[ | ||
'name' => 'Microsoft Exchange', | ||
'server' => 'smtp.office365.com', | ||
'port' => '587', | ||
'authentication' => true, | ||
'encryption' => 'tls', | ||
], | ||
[ | ||
'name' => 'SendGrid', | ||
'server' => 'smtp.sendgrid.net', | ||
'port' => '587', | ||
'authentication' => true, | ||
'user' => 'apikey', | ||
'encryption' => 'tls', | ||
], | ||
[ | ||
'name' => 'Pepipost', | ||
'server' => 'smtp.pepipost.com', | ||
'port' => '587', | ||
'authentication' => true, | ||
], | ||
[ | ||
'name' => 'SendinBlue', | ||
'server' => 'smtp-relay.sendinblue.com', | ||
'port' => '587', | ||
'authentication' => true, | ||
], | ||
[ | ||
'name' => 'Amazon SES', | ||
'server' => 'email-smtp.<CHANGE>.amazonaws.com', | ||
'port' => '465', | ||
'authentication' => true, | ||
'encryption' => 'tls', | ||
], | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.