You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to implement the ability to send an unlimited number of emails in an Ionic project with Angular, I've tried to send unlimited emails, but they are not being delivered. I've encountered a error in the "FirebaseError: Firebase: Exceeded daily quota for email sign-in. (auth/quota-exceeded), This is the code for sending email functionality. Please review it.
import { Injectable } from '@angular/core';
import { AngularFireAuth } from '@angular/fire/compat/auth';
import firebase from 'firebase/compat/app';
@Injectable({
providedIn: 'root'
})
export class AuthService {
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I want to implement the ability to send an unlimited number of emails in an Ionic project with Angular, I've tried to send unlimited emails, but they are not being delivered. I've encountered a error in the "FirebaseError: Firebase: Exceeded daily quota for email sign-in. (auth/quota-exceeded), This is the code for sending email functionality. Please review it.
import { Injectable } from '@angular/core';
import { AngularFireAuth } from '@angular/fire/compat/auth';
import firebase from 'firebase/compat/app';
@Injectable({
providedIn: 'root'
})
export class AuthService {
constructor(private fireAuth: AngularFireAuth) {}
public sendAuthEmail(email: string) {
const actionCodeSettings = {
url: 'https://exampleurl.com',
handleCodeInApp: true
};
}
public async enterVerificationCode(email: string, emailLink: string) {
return new Promise((resolve, reject) => {
}
}
#ionic #firebase #email
Beta Was this translation helpful? Give feedback.
All reactions