Created
September 3, 2009 15:15
-
-
Save nickmartini/180349 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string body = string.Format(@"Title: Product Price Request from AMOeasy Catalog{0}Date: {1}{0}********************************{0}Shopper Group: {2} (ID: {3}){0}{0}Shopper Username: {4} (ID: {5}){0}{0}Shopper Information{0}********************************{0}Name: {6} {7}{0}Phone # 1: {8}{0}Phone # 2: {9}{0}Fax #: {10}{0}E-mail 1: {11}{0}E-mail 2: {12}{0}Best Time to Call: {13}{0}{0}Product Details{0}********************************{0}Product ID: {14}{0}Supplier: {15}{0}Supplier SKU: {16}{0}Description: {17}{0}Order Qty/UM: {18}/{19}{0}********************************{0}", Environment.NewLine, DateTime.Now.ToLongDateString(), grp.name, grp.group_id, user.username, user.user_id, user.firstname, user.lastname, address1.phonenum1, address1.phonenum2, address1.faxnum, address1.email1, address1.email2, address1.bestcalltime, prod.product_id, prod.supplier.displayname, prod.supplier_sku, prod.shortdesc, prod.order_qty, prod.order_um); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment