Questions tagged [email-notifications]

Email notifications is used to send selected users email about specific activities in the system, such as updates to incidents or change requests. If you want to change how the system processes incoming email,

Email notifications allow administrators to specify:

  • When to send the notification
  • Who receives the notification
  • What content is in the notification

Additional email notification options are available. Users can subscribe to notifications, and administrators can make some notifications mandatory. See Notifications for all the tasks required to create and send custom email when system events occur.

Source: Email Notifications

579 questions
6
votes
2 answers

Disable email notification for WooCommerce manual/edit orders

WooCommerce expertise needed I need to disable email notifications for orders that I create manually, I have to use the processing status, I can't create a custom status because of a custom hook for the processing order status. Ideally a checkbox in…
Tudor Gibson
  • 121
  • 1
  • 2
  • 10
6
votes
1 answer

How to attach a file to the email notification in Teamcity

I would like to know is it possible to edit the template of the email notifications in TeamCity for sending some files attached to the email message? Can't find any information about it.
ShurupuS
  • 2,923
  • 2
  • 24
  • 44
5
votes
1 answer

Get coupon description From WooCommerce order applied coupons

I'm trying to display used coupons on WooCommerce order emails + add THE DESCRIPTION. Displaying coupons is working based on: Add Applied Coupon Code in Admin New Order Email Template - WooCommerce I also tried this: $coupons = $order->get_items(…
Rubén
  • 53
  • 4
5
votes
1 answer

reducing the number of email notifications sent by Gerrit

I'm currently using Gerrit to manage a project, I've received complaints about how chatty gerrit is. Is there anyway to filter who gets which emails (i.e. code review owner gets all emails, while reviewers only get notified when added to a new code…
Jeremy Lumley
  • 83
  • 1
  • 8
5
votes
1 answer

Woocommerce order date-time in customer processing order email notification

Is there a way to get the exact order date and time to show up in woocommerce emails? So far I am using this to get the order date: %s', $order->get_date_created()->format( 'c' ), wc_format_datetime(…
hnkk
  • 65
  • 1
  • 1
  • 3
5
votes
1 answer

Rearrange order detail totals on WooCommerce email notifications

I am customizing the order email template in WooCommerce and need to make "Shipping" second-last in the order details, right above "total". I know the loop for this is on line 52 in the "email-order-details.php" page from…
Seb G
  • 661
  • 1
  • 15
  • 34
5
votes
3 answers

Check if "Ship to different address" has been checked in Woocommerce

In WwooCommerce, I am trying to add the ship to different address information in my admin email. How can I check if the checkbox to ship to different address from checkout page is checked? I tried to use: $ship_to_different_address = get_option(…
Neophyte
  • 143
  • 1
  • 8
5
votes
1 answer

Resend programmatically a WooCommerce customer_on_hold_order email notification

I noticed that the customer on hold order email is not available so i tried to replace the actions with a single action that would send the appropriate email. This seems to work except for the on-hold status. I dont see what the difference is…
Bush Al
  • 75
  • 1
  • 7
5
votes
1 answer

How to stop email notification to update Wordpress core?

I am getting email notifications asking to update WordPress core. I don't want to update my WordPress and don't want to receive any emails regarding it. I have searched the internet but am not sure about any specific plugins or hooks. Can anyone…
Ashish Patel
  • 3,551
  • 1
  • 15
  • 31
4
votes
3 answers

DotNetNuke.Services.Mail.Mail.SendMail issue

in my system i should send notification mail after reviewing a list i am using DNN there is the Code i use private void SendEmailNotification() { DotNetNuke.Services.Mail.Mail.SendMail("mail@gmail.com", "mail@ymail.com", String.Empty,…
omnia Mm
  • 157
  • 5
  • 16
4
votes
1 answer

django-notification & django-mailer... how do they work together?

I'm looking at implementing some email notification in my app. Django-notification or Django-mailer both look appropriate. I'm reading through the docs and trying to figure out how they work together. from the…
w--
  • 6,427
  • 12
  • 54
  • 92
4
votes
1 answer

Allow re-sending New Order Notification in WooCommerce 5+

I've been using the following snippet without any issues. For no reason that I can think of it stopped being triggered today. Could it perhaps be written better? add_action('woocommerce_order_status_completed',…
4
votes
1 answer

Send WooCommerce New Order email notification only for paid orders with processing status

Normal behavior of Woocommerce is: If order is "pending" (Awaiting payment) it does not send a "New Order" email If order is "on Hold"(Awaiting confirmation) it sends "New Order" email. If order is immediately set from "Pending" to "Processing"…
Jaime Matos
  • 343
  • 1
  • 14
4
votes
1 answer

Send an email notification when a coupon code is used on a WooCommerce Order

How to send order notification to a business partner when a specific coupon is used? I found a solution for the instance when the coupon is applied here : Send an email notification when a specific coupon code is applied in WooCommerce However, I…
Ajay Singh
  • 289
  • 1
  • 3
  • 10
4
votes
2 answers

Add a custom placeholder to email subject in WooCommerce

I have a Woocommerce shop and I wanted to add a delivery_date after I accept the payment. I create a custom field in the order section named delivery_date with a date value. Now I wanted to use this custom field as a placeholder in email…
Kim
  • 55
  • 1
  • 4
1
2
3
38 39