Module::update_ticket_sent_counter( int $attendee_id )

Update the email sent counter for attendee by increasing it +1.


Parameters

$attendee_id

(int) (Required) The attendee ID.


Top ↑

Source

File: src/Tickets/Commerce/Module.php

	public function update_ticket_sent_counter( $attendee_id ) {
		tribe( Email_Communication::class )->update_ticket_sent_counter( $attendee_id );
	}

Top ↑

Changelog

Changelog
Version Description
5.8.0 Introduced.