WCS email sending - websphere-commerce

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.

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.

Google gmail quickbutton action

I'm reading about the new development of Google quick action buttons in the mail inbox.
I'm a little bit lost in this topic and not understand how I can include this function in my emails.
I have read about DKIM/SPF but I don't know if this functionality could need to do an google app.
I have my mail server with marketing segmentation and I want this button is visible when email come to client (destiny) gmail inbox (guess only works in gmail....). If i have included the markup code in html in my emails, why i can't see this button?
would it need create a specific mail application to implement this feature and send emails from this app? Someone tried this?
I know maybe this has been reply before but i think must start more down... so.. sorry.
Thanks and regards!
When you are ready to launch your marked up emails to your users, you will need to register with Google. Please follow this process:
1.Send a real-life email coming from your production servers (or a server with similar DKIM/SPF/From:/Return-Path: headers) including the markup / schema to schema.whitelisting+sample#gmail.com.
2.If you send a test/blank email, an email that does not contain schema or if you don't send an email for review your application will be silently discarded.
3.Make sure that the markup is correct prior to sending the email. For more details see Testing your Schema. Especially make sure the email passes the Email markup Tester and that there are no errors, also make sure to include as much data as possible.
4.Gmail removes all markup when forwarding an email. Do not forward the email but send it directly.
Fill out the registration form available here.
Here is the link for the documentation.
Hope this helps!!
Are you sending a promotional email (offers, etc.)?
If yes, then you are likely to be delivered to the Promotions tab, where quick actions do not work (according to Litmus - https://litmus.com/ebooks/gmail-ebook/gmail-ebook/).
Quick Actions work best in the Inbox for transactional emails.
("Here is your booking confirmation" [Check-in now] quick action)
These typically arrive directly in the Inbox.

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.

Email Server to only handle inbound messaging and routing

Was hoping for some ideas as to a service to which I can set up an inbound-only email system. In other words, I will have multiple users on the system, each can receive their own email... but at the moment... at this time, I am not focused on the ability to send or reply to messages, only receive them and send to the appropriate user. I looked into Postmark... They seem to have some great functionality.
CloudMailin Is another alternative. However there are effectively three options for setting up something like this.
Use an existing, traditional, email server and poll for the emails
Setup your own email server and create a script to run when you receive an email
Use a third party solution, as you've already mentioned.
I went through for of these for Rails a little while back here, but all the information is still relevant.

How can I send mail through Gmail with Perl?

How can I send email using Perl through my Gmail account? The one CPAN library (Mail::Webmail::Gmail) that I tried didn't work and I don't see much activity with it.
At the moment I really only need to send a message. However, the advanced functionality of getting my contacts, acting when a new email is received that has a certain label, etc. certainly seems appealing for another day.
Did you try Email::Send::Gmail?
You could always send with SMTP. The server is smtp.gmail.com, it requires TLS and uses authentication. You may also have to enable POP/IMAP in your account.
I had the same problem with Mail::Webmail::Gmail, I ended up using Net::IMAP::Simple::SSL to get my mail from gmail. I'd guess if I had to try to send mail with it I would first try Net::SMTP::Server .
I have extended WWW::Contact::GoogleContactsAPI to get all the contact fields. See:
Is there a Perl module to interface to Google Contacts API?