Angular - Submit a form programmatically.
I have a form group on the HTML and I want the component to submit the form\'s action with an email field in a post method. Ins
import { Component, ViewChild } from '@angular/core'; @Component({ template: ` ` }) class MyComponent { @ViewChild('testForm') testFormEl; testMethod() { this.testFormEl.nativeElement.submit() } }