Email is sent twice from Admin
Email is sent twice from Admin
Hello,
I don't know if this has been mentioned before. I couldn't find it doing a quick search.
But, if you go into the Admin and click on a customer's email address it will take you to this screen
Send Message: Select Template
After you select a template it will take you to this screen
Send Message: Preview & Send
If you notice the
To Address:
it displays the customer's email address twice. I have confirmed that sending an email does send it twice.
I don't know if this has been mentioned before. I couldn't find it doing a quick search.
But, if you go into the Admin and click on a customer's email address it will take you to this screen
Send Message: Select Template
After you select a template it will take you to this screen
Send Message: Preview & Send
If you notice the
To Address:
it displays the customer's email address twice. I have confirmed that sending an email does send it twice.
AC 7.0.3 build 13937
Re: Email is sent twice from Admin
Confirmed. Figured it had already been reported but apparently not.
Happens on my AC7.0 SR1
Happens on my AC7.0 SR1
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
Re: Email is sent twice from Admin
I am not clear, could you explain it with details. I have checked the Email lists and seems good to me.Confirmed. Figured it had already been reported but apparently not.
Happens on my AC7.0 SR1
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Email is sent twice from Admin
I confirm it also. Go to an existing order, click the customer's email address. Click to send an order confirmation email. The customer's email address shows up twice on the screen. Several of the emails are that way.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Re: Email is sent twice from Admin
You can try the following quick fix. Extract the attachment and replace your
Admin/Orders/Email/Preview.aspx.cs file with this one. Please don't forget to take the backup of existing file. If you have already modifed the file then you may need to merge these changes into existing file.
Admin/Orders/Email/Preview.aspx.cs file with this one. Please don't forget to take the backup of existing file. If you have already modifed the file then you may need to merge these changes into existing file.
Re: Email is sent twice from Admin
While on the same topic,
here is something else that is annoying:
Go to an existing order, click the customer's email address,
select "Blank Message", then hit Next,
the "From Address: " is blank.
Shouldn't the default email be in there?
It is for all the other email templates.
here is something else that is annoying:
Go to an existing order, click the customer's email address,
select "Blank Message", then hit Next,
the "From Address: " is blank.
Shouldn't the default email be in there?
It is for all the other email templates.
Re: Email is sent twice from Admin
Edit the Admin/Orders/Email/Preview.aspx.cs file and locate the following codeWhile on the same topic,
here is something else that is annoying:
Go to an existing order, click the customer's email address,
select "Blank Message", then hit Next,
the "From Address: " is blank.
Shouldn't the default email be in there?
It is for all the other email templates.
Code: Select all
ToAddress.Text = _Order.BillToEmail;
Code: Select all
ToAddress.Text = _Order.BillToEmail;
FromAddress.Text = Token.Instance.Store.Settings.DefaultEmailAddress;
Re: Email is sent twice from Admin
This problem is fixed in 7.2 version. Its fix is available in upgrade from 7.0 to 7.2. In change log you can see the Bug#6997 entry.