https://github.com/rekgrpth/pg_smtp
postgres email send
https://github.com/rekgrpth/pg_smtp
email postgres send
Last synced: about 1 year ago
JSON representation
postgres email send
- Host: GitHub
- URL: https://github.com/rekgrpth/pg_smtp
- Owner: RekGRpth
- License: mit
- Created: 2022-01-13T10:34:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-13T11:09:59.000Z (over 4 years ago)
- Last Synced: 2025-02-02T14:13:30.913Z (over 1 year ago)
- Topics: email, postgres, send
- Language: PLpgSQL
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
send email
```sql
insert into email (subject, sender, recipient, body) values ('subject', 'sender@mail.com', '{recipient1@mail.com,recipient2@mail.com}', 'body');
```