Jump to content

sanjay_zed

Members
  • Posts

    30
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male
  • Location
    bangalore

sanjay_zed's Achievements

Member

Member (2/5)

0

Reputation

  1. hello guys. pls help me on this. i have configured SMTP and php mailer. it is working absolutely fine in my local machine but while i deployed into server. it is throwing error as Language string failed to load: tls could you pls tell how to solve this issue.
  2. Hi guys..can you pls give some suggestions or share API so that it would be useful for me . actually in my website i want to pull all my facebook friend's email and want to send email to all of them to join my website. i tried by using some API..It is providing only first name and last name . i am not getting email id.. pls help...!!!!!!!!
  3. i have one table called ptl_temp_DEPMAS . there is one column named LEDCOD..the values for this column would be savings account as DPO1, recurring account as DP02, fixed account as DP03.. i need to run a query such a way that the result of query needs to be displayed in drop down box as accountno-accounttype example: 1 savings account 2 savings account 3 recurring account 10 fixed account guys this is my requirement..i am not getting how to write query and put condition. WHAT I TRIED IS $SQL=select DEPNUB from ptl_temp_DEPMAS where MEMNUB='123'. HERE i can able to retrieve account no i.e DEPNUB . I NEED TO CONCATENATE "LEDCOD" along with this not as it is stored in database e.g DP01...I NEED TO DISPLAY AS SAVINGS BANK..
  4. I 'm having some problem while sending mails . i am sending bulk mails using php script, der is no problem in the script. i hope some guys have faced similar issue. while i am sending bulk emails, i figured out that - few mails are going to spam not into their INBOX. can you guys pls give some hint to resolve this issue. ..
  5. those temp tables are dynamically created tables, the no . of temp tables will be increasing. ...
  6. actually i have one master table, and a few dynamically created temp tables. i will be uploading excel sheet containing email ids, while inserting my records into my master table, i need to trigger all the dynamically created temp tables. so that it will be inserted into my all temp tables at one instance.. can u provide me few links and examples of trigger and how can i achieve this.
  7. $sql="SELECT * FROM email_list "; $res= mysql_query($sql); $temparray=array(); while($row=mysql_fetch_assoc($res)) { array_push($temparray,$row["email"]); } $totalmail=count($temparray); for($ii=0;$ii<$totalmail;$ii++){ $email = $temparray[$ii]; $contents=""; $contents=" <a href='http://www.example.com/bulkEmail/thankyou.php?email=".$email."'>click here to join</a> <br/> "; } $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: sanjay <sanjay@kumar.com>'."\r\n"; echo $Recipiant = $temparray[$ii]; mail("$Recipiant",'sanjay bulk email testing',$contents,$headers,'-fsupport@calcipe.com'); } this is the above code i am using.
  8. u need to pass the value in <option> like <option value="<?php echo $AMall['campaignid']; ?>"> <?php echo $AMall['name']; ?></option>
  9. i will be sending mails to users more than one . i need to track who has clicked on that mail. so i am passing the user's email id along with body. if that script is stored in database. i couldnt able to retreive email id.
  10. i am sending a mail to user (user's email is stored in $email) in body i have written code $message =" <a href='http://www.example.com/thankyou.php?email=".$email."'>click here to join</a> "; now i need this content to be stored in database and has to be retreived and append it to body like $message =$body_from_db; if i check it in mail. the corresponding value of $email is not coming . pls help guys.
  11. thank you for giving solutions. can i make it in front end , so dat users can have the option to do it. ???
  12. hello guys. i need to run a script automatically at scheduled date and time. i am sending bulk emails . i need to setup an email campaign, in such a way that i can schedule like daily, monthly or quarterly.. can u guys give few tips to get it done..
  13. before executing parse it. $sql="select * from person"; $s = oci_parse($connectdb->conn,$sql); if (!$s) { $m = oci_error($c); trigger_error('Could not parse statement: '. $m['message'], E_USER_ERROR); } $r = oci_execute($s); if (!$r) { $m = oci_error($s); trigger_error('Could not execute statement: '. $m['message'], E_USER_ERROR); }
  14. first make sure that php_oci8 is enabled. define('SCHEMA', 'system'); define('PASSWORD', 'yourpassword'); define('DATABASE', 'localhost/XE'); define('CHARSET', 'UTF8'); class connect_database { public $conn = ''; public function __construct() { $this->conn = @oci_connect(SCHEMA, PASSWORD, DATABASE, CHARSET); if (!$this->conn) { $m = oci_error(); throw new \Exception('Cannot connect to database: ' . $m['message']); } } } global $connectdb; $connectdb = new connect_database();
  15. thanks for the replies. actually i want to track the no of emails sent successfully.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.