Покажите пожалуйста на примере. По разному перепробовал
user_data ) ) ? $evpl_order->user_data : get_the_author_meta( 'user_email', $evpl_order->user_data );
add_filter( 'wp_mail_content_type', function($content_type) {
return "text/html";
} );
$headers[] = 'From: ' . get_bloginfo( 'name' ) . ' ';
$subject = 'Места по заказу №' . $order_id . ' забронированы!';
$textmail = evpl_get_content_mail_template( 'order-booked-user.php' );
$tickets = evpl_get_order_tickets( $order_id );
$attachs = array();
if ( $tickets ) {
foreach ( $tickets as $ticket ) {
$attachs[] = $ticket['path'];
}
}
wp_mail( $user_email, $subject, $textmail, $headers, $attachs );
}
add_action( 'evpl_payment_order', 'evpl_send_mail_payment_order_user', 10 );
function evpl_send_mail_payment_order_user( $order_id ) {
global $evpl_order;
$evpl_order = evpl_get_order( $order_id );
$user_email = ( is_email( $evpl_order->user_data ) ) ? $evpl_order->user_data : get_the_author_meta( 'user_email', $evpl_order->user_data );
add_filter( 'wp_mail_content_type', function($content_type) {
return "text/html";
} );
$headers[] = 'From: ' . get_bloginfo( 'name' ) . ' ';
$subject = 'Заказ №' . $order_id . ' оплачен!';
$textmail = evpl_get_content_mail_template( 'order-payment-user.php' );
$tickets = evpl_get_order_tickets( $order_id );
$attachs = array();
if ( $tickets ) {
foreach ( $tickets as $ticket ) {
$attachs[] = $ticket['path'];
}
}
wp_mail( $user_email, $subject, $textmail, $headers, $attachs );
}
add_action( 'evpl_payment_order', 'evpl_send_mail_payment_order_admin', 20 );
function evpl_send_mail_payment_order_admin( $order_id ) {
global $evpl_order;
$evpl_order = evpl_get_order( $order_id );
$user_email = get_option( 'admin_email', 'dinara-kerimova@yandex.ru' );
add_filter( 'wp_mail_content_type', function($content_type) {
return "text/html";
} );
$headers[] = 'From: ' . get_bloginfo( 'name' ) . ' ';
$subject = 'Заказ №' . $order_id . ' оплачен!';
$textmail = evpl_get_content_mail_template( 'order-payment-admin.php' );
wp_mail( $user_email, $subject, $textmail, $headers );
}
add_action( 'evpl_save_new_order', 'evpl_send_mail_new_order_user', 10 );
function evpl_send_mail_new_order_user( $order_id ) {
global $evpl_order;
$evpl_order = evpl_get_order( $order_id );
$user_email = ( is_email( $evpl_order->user_data ) ) ? $evpl_order->user_data : get_the_author_meta( 'user_email', $evpl_order->user_data );
add_filter( 'wp_mail_content_type', function($content_type) {
return "text/html";
} );
$headers[] = 'From: ' . get_bloginfo( 'name' ) . ' ';
$subject = 'Ваш заказ был создан!';
$textmail = evpl_get_content_mail_template( 'order-new-user.php' );
$tickets = evpl_get_order_tickets( $order_id );
$attachs = array();
if ( $tickets ) {
foreach ( $tickets as $ticket ) {
$attachs[] = $ticket['path'];
}
}
wp_mail( $user_email, $subject, $textmail, $headers, $attachs );
}
add_action( 'evpl_save_new_order', 'evpl_send_mail_new_order_admin', 20 );
function evpl_send_mail_new_order_admin( $order_id ) {
global $evpl_order;
$evpl_order = evpl_get_order( $order_id );
$user_email = get_option( 'admin_email', 'dinara-kerimova@yandex.ru' );
add_filter( 'wp_mail_content_type', function($content_type) {
return "text/html";
} );
$headers[] = 'From: ' . get_bloginfo( 'name' ) . ' ';
$subject = 'Создан заказ №' . $order_id;
$textmail = evpl_get_content_mail_template( 'order-new-admin.php' );
wp_mail( $user_email, $subject, $textmail, $headers );
}
add_action( 'evpl_cron_before_delete_order', 'evpl_delete_order_tickets', 10 );
function evpl_send_mail_delete_order_user( $order_id ) {
global $evpl_order;
$evpl_order = evpl_get_order( $order_id );
$user_email = ( is_email( $evpl_order->user_data ) ) ? $evpl_order->user_data : get_the_author_meta( 'user_email', $evpl_order->user_data );
add_filter( 'wp_mail_content_type', function($content_type) {
пожалуйста помогите. Ошибки выскакивают.
как правилино продублировать?
}
wp_mail( $user_email, $subject, $textmail, $headers, $attachs );
}
}
wp_mail( $pochta@pochta.ru, $subject, $textmail, $headers );
}
со скобками?
или просто:
}
wp_mail( $user_email, $subject, $textmail, $headers, $attachs );
wp_mail( $pochta@pochta.ru, $subject, $textmail, $headers );
}