pg_smtp_client
PostgreSQL extension to send email using SMTP
Repository
brianpursley/pg_smtp_client
https://github.com/brianpursley/pg_smtp_client
Source
pg_smtp_client-0.2.1.tar.gz
pg_smtp_client-0.2.1.tar.gz
Overview
| Package | Version | Category | License | Language |
|---|---|---|---|---|
pg_smtp_client | 0.2.1 | UTIL | MIT | Rust |
| ID | Extension | Bin | Lib | Load | Create | Trust | Reloc | Schema |
|---|---|---|---|---|---|---|---|---|
| 4170 | pg_smtp_client | No | Yes | No | Yes | Yes | No | smtp_client |
| Related | http pg_net pg_html5_email_address gzip bzip zstd pg_curl pgjq |
|---|
manual updated pgrx by Vonng
Version
| Type | Repo | Version | PG Ver | Package | Deps |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.2.1 | 1817161514 | pg_smtp_client | - |
| RPM | PIGSTY | 0.2.1 | 1817161514 | pg_smtp_client_$v | - |
| DEB | PIGSTY | 0.2.1 | 1817161514 | postgresql-$v-pg-smtp-client | - |
Build
You can build the RPM / DEB packages for pg_smtp_client using pig build:
pig build pkg pg_smtp_client # build RPM / DEB packages
Install
You can install pg_smtp_client directly. First, make sure the PGDG and PIGSTY repositories are added and enabled:
pig repo add pgsql -u # Add repo and update cache
Install the extension using pig or apt/yum/dnf:
pig install pg_smtp_client; # Install for current active PG version
pig ext install -y pg_smtp_client -v 18 # PG 18
pig ext install -y pg_smtp_client -v 17 # PG 17
pig ext install -y pg_smtp_client -v 16 # PG 16
pig ext install -y pg_smtp_client -v 15 # PG 15
pig ext install -y pg_smtp_client -v 14 # PG 14
dnf install -y pg_smtp_client_18 # PG 18
dnf install -y pg_smtp_client_17 # PG 17
dnf install -y pg_smtp_client_16 # PG 16
dnf install -y pg_smtp_client_15 # PG 15
dnf install -y pg_smtp_client_14 # PG 14
apt install -y postgresql-18-pg-smtp-client # PG 18
apt install -y postgresql-17-pg-smtp-client # PG 17
apt install -y postgresql-16-pg-smtp-client # PG 16
apt install -y postgresql-15-pg-smtp-client # PG 15
apt install -y postgresql-14-pg-smtp-client # PG 14
Create Extension:
CREATE EXTENSION pg_smtp_client;
Usage
Enabling the extension
Connect to postgres and run the following command.
CREATE EXTENSION IF NOT EXISTS pg_smtp_client CASCADE;
Use the smtp_client.send_email() function to send an email.
Function Parameters
| Parameter | Type | Description | System Configuration (Optional) |
|---|---|---|---|
| subject | text | The subject of the email | |
| body | text | The body of the email | |
| html | boolean | Whether the body is HTML (true) or plain text (false) | |
| from_address | text | The from email address | smtp_client.from_address |
| recipients | text[] | The email addresses of the recipients | |
| ccs | text[] | The email addresses to CCs | |
| bccs | text[] | The email addresses to BCCs | |
| smtp_server | text | The SMTP server to use | smtp_client.server |
| smtp_port | integer | The port of the SMTP server | smtp_client.port |
| smtp_tls | boolean | Whether to use TLS | smtp_client.tls |
| smtp_username | text | The username for the SMTP server | smtp_client.username |
| smtp_password | text | The password for the SMTP server | smtp_client.password |
Default Configuration
You can configure the following system-wide default values for some of the parameters (as indiciated in the table above) like this:
ALTER SYSTEM SET smtp_client.server TO 'smtp.example.com';
ALTER SYSTEM SET smtp_client.port TO 587;
ALTER SYSTEM SET smtp_client.tls TO true;
ALTER SYSTEM SET smtp_client.username TO 'MySmtpUsername';
ALTER SYSTEM SET smtp_client.password TO 'MySmtpPassword';
ALTER SYSTEM SET smtp_client.from_address TO '[email protected]';
SELECT pg_reload_conf();
Usage Examples
Send an email:
SELECT smtp_client.send_email('test subject', 'test body', false, '[email protected]', array['[email protected]'], null, null, 'smtp.example.com', 587, true, 'username', 'password');
Send an email using configured default values:
SELECT smtp_client.send_email('test subject', 'test body', false, null, array['[email protected]']);
Or, using named arguments:
SELECT smtp_client.send_email('test subject', 'test body', recipients => array['[email protected]']);
Feedback
Was this page helpful?
Thanks for the feedback! Please let us know how we can improve.
Sorry to hear that. Please let us know how we can improve.