SMTP
透過SMTP用程式寄google workspace郵件
-
使用者登入並開兩步驗證
新增應用程式密碼
host: 'smtp.gmail.com',
port: 587,
username: 'username@your-domain.com',
password: '應用程式密碼',
from: 'admin@domain.com'
SMTP轉發
透過google寄任意寄件地址,類似google版的SES。Google workspace => Application => Gmail => Advanced Settings => SMTP Relay
允許的寄件位置:
- 僅限我的網域中已註冊的Apps使用者(google workspace user)
host: 'smtp-relay.gmail.com',
port: 587,
username: 'admin@domain.com',
password: 'password',
from: 'some-exist-username@your-domain.com'
- 僅限我的網域中的位置(同網域即可)
host: 'smtp-relay.gmail.com',
port: 587,
username: 'admin@domain.com',
password: 'password',
from: 'non-exist-username@your-domain.com'
- 不限位置(寄件地址隨你key)
host: 'smtp-relay.gmail.com',
port: 587,
username: 'admin@domain.com',
password: 'password',
from: 'non-exist-username@whatever-domain.com'