Refill - process help please

Need some help and I know this group will quickly have my answers.

Husband & I are both needing to submit refill requests. I used a link from a recent chat message and it went through pretty seamlessly, though I wasn't charged the expected $75 so not sure if it really went through properly?

Husband tried same link from the message in his app and gets an entirely different experience, looks like it's just going to charge him $75 but he didn't get the form to complete about preferences and such.

Even looking on the main website at the descriptions of when to use which portal doesn't seem to clear things up for me.

Help please?

reddit.com
u/_take_two_2 — 1 day ago

So much itching.

A few years back, pre-HRT, I had a spell of my face, jawline & ears being super itchy. Haven't had much trouble since. Now for the past couple of weeks it's my jawline, sides of my face, chest & neck. Like I wake up in the night scratching. At the pub earlier I had a hand down my bra clawing in my cleavage.

Is this common? Any clear triggers anyone has figure out and wants to share? Nothing helps - benadryl, hydrocortisone, heavy duty moisturizer.

reddit.com
u/_take_two_2 — 1 month ago
▲ 1 r/GMail

PSA for anyone missing some of their Starred emails in the standard label

I've been looking for this answer for ages, finally found one.

Kudos to ThioJoe for this post: https://support.google.com/mail/thread/340634562/missing-star-emails-bug-solved-please-escalate-for-fix?hl=en

Posting it here so others can also benefit - you may be surprised how may starred emails aren't showing where expected.

Search string:

{ label:"^ss_cg"  label:"^ss_co"  label:"^ss_cp"  label:"^ss_cr"  label:"^ss_cy"  label:"^ss_sb"  label:"^ss_sg"  label:"^ss_so"  label:"^ss_sp"  label:"^ss_sr"  label:"^ss_sy" } -is:starred

And then I'm trying out an Apps Script to make them actually show as Starred where I expect them in the first place! It would be easier if Starred would simply work, but this might at least workaround the glitch.

function syncStarredEmails() {
  // Your specific search string (all OR logic labels)
  var criteria = '{label:"^ss_cg" label:"^ss_co" label:"^ss_cp" label:"^ss_cr" label:"^ss_cy" label:"^ss_sb" label:"^ss_sg" label:"^ss_so" label:"^ss_sp" label:"^ss_sr" label:"^ss_sy"}';
  
  // 1. ADD STARS: Find threads matching criteria that aren't starred
  var threadsToStar = GmailApp.search(criteria + " -is:starred");
  for (var i = 0; i < threadsToStar.length; i++) {
    threadsToStar[i].getMessages()[0].star(); // Stars the first message in the thread
  }


  // 2. REMOVE STARS: Find threads that are starred but NO LONGER match criteria
  var threadsToUnstar = GmailApp.search("is:starred -(" + criteria + ")");
  for (var j = 0; j < threadsToUnstar.length; j++) {
    var messages = threadsToUnstar[j].getMessages();
    for (var k = 0; k < messages.length; k++) {
      if (messages[k].isStarred()) {
        messages[k].unstar();
      }
    }
  }
}
reddit.com
u/_take_two_2 — 2 months ago