Subversion Repositories SmartDukaan

Rev

Rev 8224 | Rev 8267 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8224 Rev 8260
Line 290... Line 290...
290
					log.error("Error During getting Response :- ", e);
290
					log.error("Error During getting Response :- ", e);
291
				}
291
				}
292
			}
292
			}
293
		}
293
		}
294
 
294
 
295
		//HelperClient helperServiceClient;
295
		HelperClient helperServiceClient;
296
		try {
296
		try {
297
			//helperServiceClient = new HelperClient();
297
			helperServiceClient = new HelperClient();
298
			//in.shop2020.utils.HelperService.Client client = helperServiceClient.getClient();
298
			in.shop2020.utils.HelperService.Client client = helperServiceClient.getClient();
299
			System.out.println("Email Id List: \n");
299
			log.info("Email Id List: \n");
300
			for(int i=0; i<fbaCustomersEmails.size();i++){
300
			for(int i=0; i<fbaCustomersEmails.size();i++){
301
				System.out.print(fbaCustomersEmails.get(i)+"\n");
301
				log.info(fbaCustomersEmails.get(i)+"\n");
302
				//client.saveUserEmailForSending(Arrays.asList(new String[] {fbaCustomersEmails.get(i)}), emailIdFrom, "Feedback Request", emailBody, "AmazonMFN", "AmazonFeedback", Arrays.asList(new String[] {" "}), Arrays.asList(new String[] {"amit.sirohi@shop2020.in"}), 1);
302
				client.saveUserEmailForSending(Arrays.asList(new String[] {fbaCustomersEmails.get(i)}), emailIdFrom, "Feedback Request", emailBody, "AmazonMFN", "AmazonFeedback", Arrays.asList(new String[] {" "}), Arrays.asList(new String[] {"amit.sirohi@shop2020.in"}), 1);
303
			}
303
			}
304
		} catch (Exception e) {
304
		} catch (Exception e) {
305
			log.error("Error Getting Helper Client :- ", e);
305
			log.error("Error Getting Helper Client :- ", e);
306
		}
306
		}
307
 
307