Announcement

Collapse
No announcement yet.

Sending 'Contact Us' emails to a different email address from the 'Company Contact'

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Sending 'Contact Us' emails to a different email address from the 'Company Contact'

    I am wanting to send the emails generated by customers via the Contact Us form to a different email address than that set up in the Business Settings for the Contact (whilst all other emails generated by Actinic are still to be sent to the Contact).

    I have tried to follow the trail through the perl scripts but can't pin this down!

    I would be grateful for any help here.

    Many thanks
    Steve Pritchard
    Inclusive Technology
    http://www.inclusive.co.uk/catalogue/index.html

    #2
    Hi there

    Please edit MailForm.pl and go to line 182, you should see

    Code:
    my @Response = ACTINIC::SendMail($::g_sSmtpServer, $$::g_pSetupBlob{EMAIL}, $sSubject, $sTextMailBody, $sEmailRecpt);
    Simply change this to read

    Code:
    my @Response = ACTINIC::SendMail($::g_sSmtpServer, 'someone@actinic.co.uk', $sSubject, $sTextMailBody, $sEmailRecpt);
    Of course changing 'somone@actinic.co.uk' to your own email address. This will change the destination of the Send Mail address.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X