行動應用程式有時需要與使用者互動,並透過電子郵件提示使用者採取特定動作。
Firebase 用戶端 SDK 可讓您傳送電子郵件給使用者,內含可用於重設密碼、驗證電子郵件地址,以及以電子郵件登入的連結。這些範本式電子郵件是由 Google 發送 客製化程度有限。
如果想改用自己的電子郵件範本和電子郵件 服務,本頁面說明如何使用 Firebase Admin SDK 以程式輔助的方式為上述流程產生動作連結,請在 這個提示可以包含在傳送給使用者的電子郵件中。
這項做法具備下列優點:
- 自訂電子郵件範本。包括新增樣式和 自訂品牌宣傳, 變更用語和標誌;改用名字來引導使用者 等等。
- 根據內容套用不同的範本。舉例來說,如果使用者 然後驗證電子郵件才訂閱電子報 使用提示另一個例子是電子郵件連結登入:在某種情況下,這可能會由同一位使用者觸發,或由其他使用者發出邀請。需要在電子郵件中加入背景資訊。
- 將自訂電子郵件範本本地化。
- 能夠從安全的伺服器環境產生連結。
- 能夠自訂連結的開啟方式 (透過行動應用程式或瀏覽器),以及如何傳遞其他狀態資訊等。
- 可以在發生以下情況時,自訂要用於行動應用程式流程的動態連結網域: 建立電子郵件動作連結,甚至指定其他動態連結 以網域或行動應用程式為準
初始化 ActionCodeSettings
產生電子郵件動作連結之前,您可能需要將
ActionCodeSettings
執行個體。
ActionCodeSettings
可讓您透過繼續網址傳遞其他狀態,
使用者按一下電子郵件連結後即可使用。這也讓使用者可以在動作完成後返回應用程式。此外,您可以指定是否要直接從已安裝的行動應用程式或瀏覽器處理電子郵件動作連結。
如果是要使用行動應用程式開啟的連結,您需要啟用 Firebase Dynamic Links 並執行幾項工作,以偵測這些連結 行動應用程式請參閱 設定 Firebase Dynamic Links 用於電子郵件動作
如要初始化 ActionCodeSettings
例項,請提供下列資料:
參數 | 類型 | 說明 |
---|---|---|
url |
字串 | 設定不同意義的連結 (狀態/繼續網址) 不同的情境為何:
|
iOS |
({bundleId: string}|undefined) | 設定軟體包 ID。系統會嘗試在已安裝的 Apple 應用程式中開啟連結。應用程式必須在控制台中註冊。 |
android |
({packageName: string, installApp:boolean|undefined, minimumVersion: string|undefined}|undefined) | 設定 Android 套件名稱。系統會嘗試在已安裝的 Android 應用程式中開啟連結。如果傳遞 installApp ,則會
會指定是否要安裝 Android 應用程式 (裝置支援的話),並
使用者尚未安裝應用程式如果您在提供這個欄位時未附上 packageName ,系統會擲回錯誤,說明必須與此欄位一併提供 packageName 。如果指定的是 minimumVersion ,那麼
應用程式安裝成功後,系統會引導使用者前往 Play 商店升級應用程式。
您必須在控制台中註冊 Android 應用程式。 |
handleCodeInApp |
(布林值|未定義) | 用來在行動應用程式或網頁上開啟電子郵件動作連結 連結。預設值為 false。如果設為 true,動作代碼連結 會以通用連結或 Android 應用程式連結的形式傳送,且會開啟 。在 false 的情況下,系統會先將程式碼傳送至網頁小工具,然後在繼續時會將您重新導向至已安裝的應用程式。 |
dynamicLinkDomain |
(字串|未定義) | 設定目前連結要使用的動態連結網域 (或子網域) (如果是使用 Firebase Dynamic Links 開啟)每個專案可設定多個動態連結網域,因此這個欄位可讓您明確選擇其中一個網域。如未提供,表示最舊的網域 加以使用。 |
以下範例說明如何傳送電子郵件驗證連結,讓使用者先在行動應用程式中以 Firebase 動態連結的形式開啟 (Apple 應用程式 com.example.ios
或 Android 應用程式 com.example.android
,如果應用程式尚未安裝,系統會安裝該應用程式,且最低版本為 12)。深層連結會包含繼續網址酬載 https://www.example.com/checkout?cartId=1234
。使用的動態連結網域為 coolapp.page.link
,必須設定為搭配 Firebase Dynamic Links 使用。
Node.js
const actionCodeSettings = {
// URL you want to redirect back to. The domain (www.example.com) for
// this URL must be whitelisted in the Firebase Console.
url: 'https://www.example.com/checkout?cartId=1234',
// This must be true for email link sign-in.
handleCodeInApp: true,
iOS: {
bundleId: 'com.example.ios',
},
android: {
packageName: 'com.example.android',
installApp: true,
minimumVersion: '12',
},
// FDL custom domain.
dynamicLinkDomain: 'coolapp.page.link',
};
Java
ActionCodeSettings actionCodeSettings = ActionCodeSettings.builder()
.setUrl("https://www.example.com/checkout?cartId=1234")
.setHandleCodeInApp(true)
.setIosBundleId("com.example.ios")
.setAndroidPackageName("com.example.android")
.setAndroidInstallApp(true)
.setAndroidMinimumVersion("12")
.setDynamicLinkDomain("coolapp.page.link")
.build();
Python
action_code_settings = auth.ActionCodeSettings(
url='https://www.example.com/checkout?cartId=1234',
handle_code_in_app=True,
ios_bundle_id='com.example.ios',
android_package_name='com.example.android',
android_install_app=True,
android_minimum_version='12',
dynamic_link_domain='coolapp.page.link',
)
Go
actionCodeSettings := &auth.ActionCodeSettings{
URL: "https://www.example.com/checkout?cartId=1234",
HandleCodeInApp: true,
IOSBundleID: "com.example.ios",
AndroidPackageName: "com.example.android",
AndroidInstallApp: true,
AndroidMinimumVersion: "12",
DynamicLinkDomain: "coolapp.page.link",
}
C#
var actionCodeSettings = new ActionCodeSettings()
{
Url = "https://www.example.com/checkout?cartId=1234",
HandleCodeInApp = true,
IosBundleId = "com.example.ios",
AndroidPackageName = "com.example.android",
AndroidInstallApp = true,
AndroidMinimumVersion = "12",
DynamicLinkDomain = "coolapp.page.link",
};
詳情請參閱「在電子郵件動作中傳遞狀態」。
產生密碼重設電子郵件連結
如要產生密碼重設連結,請提供現有使用者的電子郵件和
選用的 ActionCodeSettings
物件。這項作業會透過電子郵件動作連結解決。使用的電子郵件必須屬於現有使用者。
Node.js
// Admin SDK API to generate the password reset link.
const userEmail = 'user@example.com';
getAuth()
.generatePasswordResetLink(userEmail, actionCodeSettings)
.then((link) => {
// Construct password reset email template, embed the link and send
// using custom SMTP server.
return sendCustomPasswordResetEmail(userEmail, displayName, link);
})
.catch((error) => {
// Some error occurred.
});
Java
String email = "user@example.com";
try {
String link = FirebaseAuth.getInstance().generatePasswordResetLink(
email, actionCodeSettings);
// Construct email verification template, embed the link and send
// using custom SMTP server.
sendCustomEmail(email, displayName, link);
} catch (FirebaseAuthException e) {
System.out.println("Error generating email link: " + e.getMessage());
}
Python
email = 'user@example.com'
link = auth.generate_password_reset_link(email, action_code_settings)
# Construct password reset email from a template embedding the link, and send
# using a custom SMTP server.
send_custom_email(email, link)
Go
email := "user@example.com"
link, err := client.PasswordResetLinkWithSettings(ctx, email, actionCodeSettings)
if err != nil {
log.Fatalf("error generating email link: %v\n", err)
}
// Construct password reset template, embed the link and send
// using custom SMTP server.
sendCustomEmail(email, displayName, link)
C#
var email = "user@example.com";
var link = await FirebaseAuth.DefaultInstance.GeneratePasswordResetLinkAsync(
email, actionCodeSettings);
// Construct email verification template, embed the link and send
// using custom SMTP server.
SendCustomEmail(email, displayName, link);
連結產生後,您可以將其插入自訂密碼重設電子郵件中,然後透過自訂 SMTP 伺服器傳送給對應使用者。
如果您不使用預設的密碼重設到達網頁,並自行建構自訂處理程序,請參閱如何建立自訂電子郵件動作處理程序。
產生電子郵件驗證連結
如要產生電子郵件驗證連結,請提供現有使用者的未驗證狀態
電子郵件地址,以及一個選用的 ActionCodeSettings
物件。這項作業會透過電子郵件動作連結解決。使用的電子郵件必須屬於現有使用者。
Node.js
// Admin SDK API to generate the email verification link.
const useremail = 'user@example.com';
getAuth()
.generateEmailVerificationLink(useremail, actionCodeSettings)
.then((link) => {
// Construct email verification template, embed the link and send
// using custom SMTP server.
return sendCustomVerificationEmail(useremail, displayName, link);
})
.catch((error) => {
// Some error occurred.
});
Java
String email = "user@example.com";
try {
String link = FirebaseAuth.getInstance().generateEmailVerificationLink(
email, actionCodeSettings);
// Construct email verification template, embed the link and send
// using custom SMTP server.
sendCustomEmail(email, displayName, link);
} catch (FirebaseAuthException e) {
System.out.println("Error generating email link: " + e.getMessage());
}
Python
email = 'user@example.com'
link = auth.generate_email_verification_link(email, action_code_settings)
# Construct email from a template embedding the link, and send
# using a custom SMTP server.
send_custom_email(email, link)
Go
email := "user@example.com"
link, err := client.EmailVerificationLinkWithSettings(ctx, email, actionCodeSettings)
if err != nil {
log.Fatalf("error generating email link: %v\n", err)
}
// Construct email verification template, embed the link and send
// using custom SMTP server.
sendCustomEmail(email, displayName, link)
C#
var email = "user@example.com";
var link = await FirebaseAuth.DefaultInstance.GenerateEmailVerificationLinkAsync(
email, actionCodeSettings);
// Construct email verification template, embed the link and send
// using custom SMTP server.
SendCustomEmail(email, displayName, link);
連結產生後,您可以將其插入自訂驗證電子郵件,然後透過自訂 SMTP 伺服器傳送給對應使用者。
如果未使用預設的電子郵件驗證到達網頁和建立 您自己的自訂處理常式的 建立自訂電子郵件動作處理常式。
產生登入用的電子郵件連結
您必須先為 Firebase 專案啟用電子郵件連結登入功能,才能使用電子郵件連結登入機制驗證使用者。
如要產生登入連結,請提供使用者的電子郵件地址和ActionCodeSettings
物件。在此情況下,必須提供 ActionCodeSettings
物件
瞭解使用者點選連結並登入後要導向何處
完成。這項作業會透過電子郵件動作連結解決。
與重設密碼和電子郵件驗證不同,使用者不一定要是電子郵件地址的擁有者,因為這個作業可用於透過電子郵件連結為應用程式註冊新使用者。
Node.js
// Admin SDK API to generate the sign in with email link.
const useremail = 'user@example.com';
getAuth()
.generateSignInWithEmailLink(useremail, actionCodeSettings)
.then((link) => {
// Construct sign-in with email link template, embed the link and
// send using custom SMTP server.
return sendSignInEmail(useremail, displayName, link);
})
.catch((error) => {
// Some error occurred.
});
Java
String email = "user@example.com";
try {
String link = FirebaseAuth.getInstance().generateSignInWithEmailLink(
email, actionCodeSettings);
// Construct email verification template, embed the link and send
// using custom SMTP server.
sendCustomEmail(email, displayName, link);
} catch (FirebaseAuthException e) {
System.out.println("Error generating email link: " + e.getMessage());
}
Python
email = 'user@example.com'
link = auth.generate_sign_in_with_email_link(email, action_code_settings)
# Construct email from a template embedding the link, and send
# using a custom SMTP server.
send_custom_email(email, link)
Go
email := "user@example.com"
link, err := client.EmailSignInLink(ctx, email, actionCodeSettings)
if err != nil {
log.Fatalf("error generating email link: %v\n", err)
}
// Construct sign-in with email link template, embed the link and send
// using custom SMTP server.
sendCustomEmail(email, displayName, link)
C#
var email = "user@example.com";
var link = await FirebaseAuth.DefaultInstance.GenerateSignInWithEmailLinkAsync(
email, actionCodeSettings);
// Construct email verification template, embed the link and send
// using custom SMTP server.
SendCustomEmail(email, displayName, link);
連結產生後,您可以將其插入自訂登入電子郵件,然後透過自訂 SMTP 伺服器傳送電子郵件給對應使用者。
進一步瞭解 使用電子郵件連結透過 Firebase 驗證使用者。 這有助於在使用者點選連結並重新導向至應用程式後,提供如何完成登入的相關資訊。