Description
Model |
outsize(L×W×H)mm |
Temperature(℃) |
Valid Capcity(L) |
Display Area(㎡) |
Net weight(㎏) |
17HR -2000 | 2000×1000×1450 | 2~8 | 648 | 3.6 | 270 |
17HR -2500 | 2500×1000×1450 | 2~8 | 810 | 4.5 | 338 |
// Function to change email address function wpb_sender_email( $original_email_address ) { return 'not-reply@iswordpress.com'; } // Function to change sender name function wpb_sender_name( $original_email_from ) { return 'Ceviants'; } // Hooking up our functions to WordPress filters add_filter( 'wp_mail_from', 'wpb_sender_email' ); add_filter( 'wp_mail_from_name', 'wpb_sender_name' );