Jump to content

Download email addresses, can you download phone numbers?


Guest xxchrisukxx

Recommended Posts

Guest xxchrisukxx

Hi. I want to use the bulk download email address feature used on the email customers page, but I want to be able to produce the same .txt document with mobile (cell) phone numbers instead of email addresses. Any body know if/how it can be done? Thanks in advance

Link to comment
Share on other sites

Hi. I want to use the bulk download email address feature used on the email customers page, but I want to be able to produce the same .txt document with mobile (cell) phone numbers instead of email addresses. Any body know if/how it can be done? Thanks in advance

This will require editing one of the admin files:

/admin/customers/email.php

Line 48 (on un modded CC3.0.17 file), add mobile to SQL query:

 $query = "SELECT title, email, firstName, lastName, type, mobile FROM ".$glob['dbprefix']."CubeCart_customer WHERE optIn1st = 1";




Line 58, add mobile value to list;


 $emailList .= $results[$i]['title']." ".$results[$i]['firstName']." ".$results[$i]['lastName']." <".$results[$i]['email'].">".$results[$i]['mobile'];

Obviously, back things up first....

Untested, but should work fine.

Jason

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...