我的网站上有一个弹出窗口,让用户知道电子邮件已发送。
我想通过bootstrap将其更改为更好的消息(网站由bootstrap制作)
我不喜欢弹出消息,而是喜欢背景音乐。 你可以在这里看到它们:背景背景 http://getbootstrap.com/css/#helper-classes
这就是弹出代码的样子。
if(wp_mail($ to,$ subject,$ msg,$ headers,$ attachments)){echo '邮件已发送。查看您的电子邮件收件箱。&#39 ;; } else { echo'邮件未发送!&#39 ;; }; 在这里输入代码
我需要做些什么来改变它?
答案 0 :(得分:0)
您可以使用PHP回显HTML代码:
if(wp_mail($to, $subject, $msg, $headers, $attachments)) {
echo '<p class="bg-success">The message was sent. Check your email inbox.</p>';
}
else {
echo '<p class="bg-danger">The message was not sent!</p>'; };
}