ssl_error_rx_record_too_long when sending FROM to bank - forms

i am trying to send a to the bank with the details of the payment.
The bank tells me that i have to make a POST with action to their URL with ssl:
... (all hidden values)
what im trying to do is send all the info with a header(location: 'https://www.bankurl.com?var1=111&var2=222&var3=333&... ')
those this work the same as a POST FORM?
All i get is this error ssl_error_rx_record_too_long, how can i fix this? is it problem of my server? or the banks server?
On my server i havent got SSL, but the bank has told me i dont need it.
Any body knows the answer?
thank allot!

i did it with the form and an auto submit with java.
all worked well.

Related

Dot is missed in email link

We send email to our customers and have link like this
http://www.my-site.no/uploads/171116-091639-19.jpg
The problem that sometimes some of dots is missed, for example
like this:
http://www.my-site.no/uploads/171116-091639-19jpg
http://www.my-siteno/uploads/171116-091639-19.jpg
we use sendgrid to send messages and use link tracking feature there
Does anybody meet that issue? or what can we do to avoid that?
Can you ensure that the links are correct before you send the email? What happens when you send a test to yourself?
I've worked with various ESPs and have never had this issue, even with link tracking which should just append some parameter or create a redirect link.

Cpanel: How to check if the email function is activated - contact forms from users don't get sent to my email

I have a website with a contact form.
For some reason the emails aren't getting sent to me, and the code should be fine.
My guess is that the mailing function from Cpanel is disabled.
How can I check if it is active/disabled?
The other option is that the server isn't giving the permition to do it. I really don't know what can be the problem. Can someone help me to solve this one out?
Thanks!
The host must have disabled nodody user mailing capabilities. In that case its better you change your code for sending emails via SMTP authentication method.

moved magento and contact email is not working

I moved a magento system to a new server combining magento and sql all on the same VM.
Everything is more or less working other than the contact form will not send an email,
I get
Unable to submit your request. Please, try again later
When I try to send an email with the contact form. As I know practically nothing about Magento, I am not sure where to look. I have been in the Magento admin and I see the contact page and I can turn the contacts page on and off. As I have moved this from another working system, I am not sure how Magento sends it's mails. Is it using a sendmail, or something that I perhaps haven't started on the new VM? I am guessing this should be a simple change somewhere I hope, but I have very little idea of where to look there are so many options. Any help on where to look for mail sending parameters would be appreciated.

WCS email sending

I'm trying to generate a mail when my process is complete in WCS, please share some links or info about how to get started.
Like order placing I'm having a functionality for taking back few Merchendise(checking in), after this is complete, I should send an Email to specified id. I am very new to this, tried googling dint find much info.
Please help.
You need to do something like this http://www-01.ibm.com/support/docview.wss?uid=swg21230937
To send a email first of all, Enable the email transport for the site in admin console. Configure it by providing the SMTP server details.
Then you can use SendMsgCmd interface to send a email.

Sending contact for to different server/domain before sending

I have two websites and I would need to make a contact form on other of the sites. But the PHP that actually sends the mail is on other server.
So the form is on www.domain1.com/contactform.html / server1
And hitting the send button there it would send the info to www.domain2.com/mail.php / server2
I think this should be possible but is there any security issues on this?
Also I would need to send the end users email (to who someone is contacting to) also to the server2... maybe on a hidded field? But can spamspot recognize that address from hidden field? Or people can change the address to different?
Hopefully you understand what I intend to do. The questions are more that is it secure to do it like that and are there better ways to do it.
From my personal experience, it would make more sense to just make another mail.php file on the domain1.com contact form.
As far as sending the end users email, you could put it in a hidden field, and that'd work fine.
It would have the same security issues, if you had contactform.html and mail.php on the same server.