Title: G-SMTP
Author: The Generation
Published: <strong>2022년 5월 14일</strong>
Last modified: 2025년 6월 30일

---

플러그인 검색

![](https://ps.w.org/g-smtp/assets/banner-772x250.jpg?rev=2724830)

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://ps.w.org/g-smtp/assets/icon-128x128.gif?rev=2724554)

# G-SMTP

 작성자: [The Generation](https://profiles.wordpress.org/thegeneration/)

[다운로드](https://downloads.wordpress.org/plugin/g-smtp.1.1.5.zip)

 * [세부사항](https://ko.wordpress.org/plugins/g-smtp/#description)
 * [평가](https://ko.wordpress.org/plugins/g-smtp/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/g-smtp/#installation)
 * [개발](https://ko.wordpress.org/plugins/g-smtp/#developers)

 [지원](https://wordpress.org/support/plugin/g-smtp/)

## 설명

G-SMTP is a next Generation SMTP-plugin built to last. This is a plugin that helps
you send your e-mails via SMTP, and only that.

All the SMTP-details are setup as constants via wp-config.php, making it stable 
and does not have to rely on the database for the e-mails to be delivered.

## 스크린샷

 * [[
 * Overview of settings page where you can verify the connection
 * [[
 * Configuration page where you can generate constants to put in your wp-config.
   php

## 설치

 1. Install the plugin either through your web browser in the WordPress admin panel
    or manually through SFTP/FTP.
 2. Activate the plugin
 3. Setup the constants in `wp-config.php` as described below or use the configuration
    page at **Settings > G-SMTP > Config** to generate them
 4. Test the settings by going to **Settings > G-SMTP** and sending a test e-mail

#### Constants

These are the base constants needed to make the plugin work:

    ```
    define( 'G_SMTP_ENABLED', true );
    define( 'G_SMTP_HOST', 'my-smtp-host.com' );
    define( 'G_SMTP_PORT', 25 );
    ```

Below, you will find information regarding the different constants available:

**Activated/deactivated (mandatory)**
 This sets if the SMTP-connection should be
enabled or not. It can be used for debugging-purposes and should be left as true
generally.

    ```
    define( 'G_SMTP_ENABLED', true );
    ```

**Host (mandatory)**
 Here you enter which domain/IP-address where the SMTP-service
is hosted.

    ```
    define( 'G_SMTP_HOST', 'my-smtp-host.com' );
    ```

**Port (mandatory)**
 Here you enter what port the SMTP-service is hosted on. Generally
the ports `25` (non encrypted), `465` (SSL) and `587` (TLS) are used.

    ```
    define( 'G_SMTP_PORT', 25 );
    ```

**Encryption (optional)**
 This defines if an encrypted connection should be used
when connecting to the SMTP-service. Normally you should enter `ssl` if the port
is `465`, `tls` if the port is `587` and leave it empty if the port is `25`.

    ```
    // TLS connections (port 587)
    define( 'G_SMTP_ENCRYPTION', 'tls' );

    // SSL connections (port 465)
    define( 'G_SMTP_ENCRYPTION', 'ssl' );
    ```

**Username and password (optional)**
 If the SMTP-service requires authentication
then you must enter username and password.

    ```
    define( 'G_SMTP_USER', 'username' );
    define( 'G_SMTP_PASSWORD', 'password123' );
    ```

**Sender, name and e-mail (optional)**
 If you want to override the sender name 
and e-mail address you can enter these settings.

    ```
    define( 'G_SMTP_FROM_NAME', 'Sender name' );
    define( 'G_SMTP_FROM_ADDRESS', 'sender@sender.com' );
    ```

This overrides the **default settings**, if plugins have other settings then those
will be used.

If you want name and e-mail address to always be overriden then you can use this
setting:

    ```
    define( 'G_SMTP_FORCE_FROM', true );
    ```

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“G-SMTP”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ The Generation ](https://profiles.wordpress.org/thegeneration/)

“G-SMTP”(이)가 3 개 언어로 번역되었습니다. 기여해 주셔서 [번역자](https://translate.wordpress.org/projects/wp-plugins/g-smtp/contributors)
님께 감사드립니다.

[자국어로 “G-SMTP”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/g-smtp)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/g-smtp/)는, [SVN 저장소](https://plugins.svn.wordpress.org/g-smtp/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/g-smtp/)을 [RSS](https://plugins.trac.wordpress.org/log/g-smtp/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.1.5

 * Added compatibility with WordPress 6.8.

#### 1.1.4

 * Feature: Tested with WordPress 6.5.

#### 1.1.3

 * Feature: Tested with WordPress 6.4.

#### 1.1.2

 * Tested with WordPress 6.0.

#### 1.1.1

 * Change to G_SMTP_USER from G_SMTP_USERNAME when generating config through the
   wizard

#### 1.1.0

 * Added ability to generate config for wp-config.php on the setting page.

#### 1.0.0

 * Initial release.

## 기초

 *  버전 **1.1.5**
 *  최근 업데이트: **11개월 전**
 *  활성화된 설치 **300+**
 *  다음까지 시험됨: **6.5.8**
 *  PHP 버전 ** 8.0 또는 그 이상 **
 *  언어
 * [Dutch](https://nl.wordpress.org/plugins/g-smtp/), [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/g-smtp/),
   [English (US)](https://wordpress.org/plugins/g-smtp/), 그리고 [Swedish](https://sv.wordpress.org/plugins/g-smtp/).
 *  [자국어로 번역하기](https://translate.wordpress.org/projects/wp-plugins/g-smtp)
 * 태그:
 * [smtp](https://ko.wordpress.org/plugins/tags/smtp/)
 *  [고급 보기](https://ko.wordpress.org/plugins/g-smtp/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/g-smtp/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/g-smtp/reviews/)

## 기여자

 *   [ The Generation ](https://profiles.wordpress.org/thegeneration/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/g-smtp/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://thegeneration.se/)