Is there a way I can embed a URL link i.e. Google in an SMS message send through [myphonenumber]#txt.att.net ? And I want to add some parameters in the URL. The link shows up as un-clickable plain text in the SMS with html tag. The html tag appears in the SMS. I want to hide or embed html codes. I pass the parameters with this url in my Controler. When sending sms, I found out the html codes are including in the sms.
SMS is a text-only medium that does not interpret HTML tags on its own. Depending on the receiving device, it may detect a hyperlink in the message, but there is no way to embed it as an
<a href>
tag
github.com/cordova-sms/cordova-sms-plugin/issues/63
Related
I am using HelloSign with PHP SDK to send an agreement to users to sign. I need to add a link to 'Terms of Service' in the body of the signing document, so that users can click, visit the link and return to sign the document. I am using a PDF with a clickable hyperlink as the HelloSign template but HelloSign does not seem to support links on templates. The links appear as flat text and not clickable. How can I get this done in HelloSign?
Thank you so much for your question. I will be more than happy to assist you with this.
That is correct, all hyperlinks are removed from the documents. The url will be in shown in plain text but will not be clickable. This is the case for ANY signature request: non-embedded and embedded.
A suggested workaround for non-embedded signature requests is to add the link to the message body of the signature request.
Please let me know about any additional questions that you may have.
Thanks!
LaToya
I have a sign-up form. When someone signs up, they immediately receive an email (in HTML format) with the following information:
1) Their sign-up information (Name, P#, Email, etc.)
What I need is the following:
1) After sign-up, in the email the user receives, there needs to be a png-image that is generated by an external script. At the moment, I am using PEAR to generate/send the email (AOK) and Mail_Mime::addHTMLImage() to add the image, but alas, with no luck. All I get when I send the email is a broken image with my alt text appearing. It's important to keep in mind that I am generating the image (to be used in the HTML email) from an external script.
The code I'm using to try and grab the image (from the external script) is as follows:
$mime->addHTMLImage(get_template_directory_uri()."/qr_code_generator.php?code=", "image/png");
Also, not sure if it helps, but I'm using http://phpqrcode.sourceforge.net/ for the QR code generation
Any and all help is greatly appreciated!
I answered most of this in your previous question here.
The likely issue again is that you can't embedded base64 encoded images directly into the body of the email, you have to treat them like attachments. The way you do that is with a content section and an appropriate content id.
Check out the documentation for the addHTMLImage method.
https://pear.php.net/manual/en/package.mail.mail-mime.addhtmlimage.php
It's not the best documentation but check it out and my other answer. That should give you enough to solve the issue.
How to send html email with image background via PHPMailer?
I need standart html template with image backgrounds
It's not really up to PHPMailer, it's determined by the content you provide in the message body, but I'd suggest you stay away from image backgrounds anyway because Outlook does not support them.
I am using the joomla mail function. I have attached a background-image for the message body.
The image is displayed in all tools like: Gmail, Yahoo, Rediff etc.
But it does not show in Outlook 2007.
Seaching the internet, I did not get any information to let me know, wether the img tag is supported in Outlook
Background images are not supported in Outlook for any elements other than the body tag of an HTML email. The body of the email is not the same thing as it refers to the contents of the email and not the HTML body tag.
You might also look at this hack to enable background images in outlook - http://emailmarketingvoodoo.com/blog/post/outlook-2007-can-now-render-background-images/
I am trying to send email as html with embedded images (not attachment) and as background.
I was trying to use Xpert Mailer but their documantion has small amount of information so I didnt succeed.
I was also trying to use Swiftmailer, with Swiftmailer I succeed to send email with embedded images but not as background.
Anyone has any clue how to send embbed images as background / has good PHP Email Sender?
Thanks!
Don't know about the apps you're using but this can be done by embedding the images in base64 format, looks like this:
<img src="data:image/gif;base64,R0lGODlhUAABLABLAMOREBASE64HERE">
Quick google search shows the following converter site: click
I found the answer. the problem was not my html or how I embedded the image. tha problem was that gmail doesnt support css property background / background-image and therefore it didnt work for me.
I had to use