#3914 closed task (blessed) (reported-upstream)
Automatically send confirmation email for WordCamp talk submissions to applicants
Reported by: | wiredpinecone | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | WordCamp Site & Plugins | Keywords: | |
Cc: |
Description (last modified by )
As a failsafe in case anything goes wrong with a website, internet connection, etc. and while the junk mail ticket #3524 has not been resolved, the site would automatically confirm talk submissions, preventing data/information loss that has already been documented.
Camps could then add to the contact form that "if you don't see a confirmation email that your application has been recorded, please contact us."
This would also help to establish good communication with applicants from the very beginning.
Change History (7)
This ticket was mentioned in Slack in #meta-wordcamp by coreymckrill. View the logs.
5 years ago
This ticket was mentioned in Slack in #meta-wordcamp by ryelle. View the logs.
4 years ago
This ticket was mentioned in Slack in #meta-wordcamp by ryelle. View the logs.
4 years ago
#7
@
4 years ago
- Resolution set to reported-upstream
- Status changed from new to closed
This ticket has been moved to GitHub https://github.com/WordPress/wordcamp.org/issues/606
There is a
grunion_after_message_sent
action that passes the following params:$post_id, $to, $subject, $message, $headers, $all_values, $extra_values
See https://developer.jetpack.com/hooks/grunion_after_message_sent/
That action can be used to add a hooked function that sends an e-mail. The e-mail value in the
$all_values
array depends a bit on when it was added, but would be2_Email
on a typical default form field.If this is insufficient, Jetpack can likely add passing a
$comment_author_email
that is set to the value of the last e-mail address field that is processed.