• hi,
    PDF and Packing slips are creating . i want to send that pdf to customer email and admin email once order has been completed(completed given from wp dashboard). i given completed from dashboard but i’ve not get any invoices in mail. why?
    settings are pfa.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    What happens if you send the email manually? Note that the ‘Completed Order email’ does not go to the admin by default. Documentation for a workaround Receive a copy of the invoice.

    If the attachment is not included either when you send the email manually, you may want to try sending via SMTP with a plugin like WP Mail SMTP

    As an unrelated side note, how do you get multiple imgur images in the forums here with a fancy slider like in your other post?

    Ewout

    Thread Starter gobi004

    (@gobi004)

    i dont want to send the invoices manually . i want to send automatically ,
    if i click ‘completed’ from wp dashboard ->woocommerce->orders then the invoice should gsend by mail to that specific customer who made an order at the same time admin too.
    hw to do that? help

    Plugin Contributor Ewout

    (@pomegranate)

    I understand, sending it manually is just to test ?? Beyond that first line in my response:

    Note that the ‘Completed Order email’ does not go to the admin by default. Documentation for a workaround Receive a copy of the invoice.

    If the attachment is not included either when you send the email manually, you may want to try sending via SMTP with a plugin like WP Mail SMTP

    As an unrelated side note, how do you get multiple imgur images in the forums here with a fancy slider like in your other post?

    Probably answers your questions – let me know what you find!

    Ewout

    Thread Starter gobi004

    (@gobi004)

    It means should i use this plugin ?

    https://www.ads-software.com/plugins/wp-mail-smtp/

    am not getting .
    Even i didnt get any single mail after order or order completed given.

    Plugin Contributor Ewout

    (@pomegranate)

    Did you not get the email, or did you customer not get the emal? Did you implement the filter to receice a copy of the invoice?

    Thread Starter gobi004

    (@gobi004)

    No i didnt get any mail regarding my order
    i added
    <?php
    add_filter( ‘woocommerce_email_headers’, ‘mycustom_headers_filter_function’, 10, 2);

    function mycustom_headers_filter_function( $headers, $email ) {
    if ($email == ‘customer_completed_order’) {
    $headers .= ‘BCC: Gobi <[email protected]>’ . “\r\n”; //just repeat this line again to insert another email address in BCC
    }

    return $headers;
    }

    in functions.php

    Plugin Contributor Ewout

    (@pomegranate)

    if you didn’t get any email, it can be any of three things:

    • The email is not enabled in WooCommerce. Check this in the WooCommerce Settings > Email
    • The email is not sent because it’s being blocked by your server. Try SMTP as suggested
    • There’s not enough memory on your site. Check the Status tab of the PDF invoice settings, it tells you how much memory wordpress has. Check this guide for more information: Solving memory issues.

    Hope that helps!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Not getting INVOICE in mail’ is closed to new replies.