• The hosting provider i have to use for my site has some special rules regarding emails sent through the system. Any email must show the “from” attribute and so using bool mail they assigned that the following:

    bool mail ( string $to , string $subject, string $message [, string $additional_headers [, string $additional_parameters]])

    Must be changed to :

    bool mail ( string $to , string $subject, string $message, From:string $From_address [, string $additional_headers [, string $additional_parameters]])

    Unfortunately i cannot find how to change this attribute with contact form 7 so i am unable to send any info using it on my site. Any ideas??

  • The topic ‘contact form 7 php mailer problem’ is closed to new replies.