Pledge Form: Add ability to resend pledge confirmation email.

Fixes #49.
This commit is contained in:
Ian Dunn 2019-10-26 22:18:28 -07:00
parent 63f718bd9a
commit 3f774fdb78
No known key found for this signature in database
GPG key ID: 99B971B50343CBCB
5 changed files with 41 additions and 13 deletions

View file

@ -221,6 +221,13 @@ function save_pledge( $pledge_id, $pledge ) {
save_pledge_meta( $pledge_id, $submitted_meta );
if ( filter_input( INPUT_POST, 'resend-pledge-confirmation' ) ) {
Pledge\send_pledge_confirmation_email(
filter_input( INPUT_GET, 'resend-pledge-id', FILTER_VALIDATE_INT ),
get_page_by_path( 'for-organizations' )->ID
);
}
if ( filter_input( INPUT_POST, 'resend-contributor-confirmation' ) ) {
PledgeForm\send_contributor_confirmation_emails(
$pledge_id,