$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>plugins - How to send custom mail when a user complete a specific form|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

plugins - How to send custom mail when a user complete a specific form

matteradmin10PV0评论

I've been looking for the whole day for a plugin that help me to solve my problem with my website.

Is there a way to create a specific form that could send a custom e-mail when the user complete it?

Thanks!

I've been looking for the whole day for a plugin that help me to solve my problem with my website.

Is there a way to create a specific form that could send a custom e-mail when the user complete it?

Thanks!

Share Improve this question asked Dec 23, 2018 at 19:35 JerryJerry 1 5
  • Hi, thanks for your question... What exactly are you looking for? Because Contact Form 7 does exactly, what you've described. But I don't believe that you haven't found it after whole day of searching... ;) – Krzysiek Dróżdż Commented Dec 23, 2018 at 20:58
  • I've tried Contact form 7 but I can't connect a specific mail template to a specific form. What i'm trying to do is to make a form for a page that send a specific mail for new registration from that form. Is there any "hidden" option i'm not seeing? Thanks for any further explaination – Jerry Commented Dec 23, 2018 at 22:11
  • so you definitely haven’t researched it enough... – Krzysiek Dróżdż Commented Dec 23, 2018 at 22:15
  • Time to watch some hindi tutorial i guess :) Oh, and thanks for the hint! – Jerry Commented Dec 23, 2018 at 22:18
  • no need plugin if you create custom its good for you. you can create easily. so below answer. – user147874 Commented Dec 24, 2018 at 9:42
Add a comment  | 

2 Answers 2

Reset to default 0

There are so many plugins for that :- 1) Contact form 7 2) Ninja form If you want to insert a post or product you can choose gravity form.

it help you to create custom functions. if you want to create/send mail custom then you should try wp_mail ( which is wordpress function ) or php core function is mail(). do proper R & D on it and its parameter also.

parameter also provide you sender info and receiver info.

on submit your form you can use these functions.

reference links for mail functions :-

wordpress :- https://developer.wordpress/reference/functions/wp_mail/

php :- https://www.w3schools/php/func_mail_mail.asp

i hope its help you. thank.

Post a comment

comment list (0)

  1. No comments so far